Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 3 | <manifest android:versionCode="40000" |
| 4 | android:versionName="1.1.40000" |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 5 | xmlns:android="http://schemas.android.com/apk/res/android" |
| 6 | package="com.android.gallery3d"> |
| 7 | |
| 8 | <original-package android:name="com.android.gallery3d" /> |
| 9 | |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 10 | <uses-sdk android:minSdkVersion="14" /> |
| 11 | |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 12 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> |
| 13 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
| 14 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 15 | <uses-permission android:name="android.permission.CAMERA" /> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 16 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
| 17 | <uses-permission android:name="android.permission.INTERNET" /> |
| 18 | <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" /> |
Martijn Coenen | 33ef037 | 2012-03-26 18:25:50 -0700 | [diff] [blame] | 19 | <uses-permission android:name="android.permission.NFC" /> |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 20 | <uses-permission android:name="android.permission.READ_SMS" /> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
Chih-Chung Chang | a27fc9e | 2012-03-12 16:04:59 +0800 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.SET_WALLPAPER" /> |
| 25 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
| 26 | <uses-permission android:name="android.permission.VIBRATE" /> |
| 27 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 28 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 30 | <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" /> |
Danesh M | 357f7b4 | 2012-07-28 23:44:56 -0400 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.PREVENT_POWER_KEY" /> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 32 | |
| 33 | <supports-screens android:smallScreens="false" |
| 34 | android:normalScreens="true" android:largeScreens="true" |
| 35 | android:anyDensity="true" /> |
| 36 | |
| 37 | <application android:icon="@mipmap/ic_launcher_gallery" android:label="@string/app_name" |
| 38 | android:name="com.android.gallery3d.app.GalleryAppImpl" |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 39 | android:theme="@style/Theme.Gallery" |
Wu-cheng Li | 680ab6c | 2012-04-30 17:43:01 +0800 | [diff] [blame] | 40 | android:logo="@mipmap/ic_launcher_gallery" |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 41 | android:hardwareAccelerated="true"> |
| 42 | <uses-library android:name="com.google.android.media.effects" android:required="false" /> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 43 | <activity android:name="com.android.gallery3d.app.MovieActivity" |
| 44 | android:label="@string/movie_view_label" |
| 45 | android:configChanges="orientation|keyboardHidden|screenSize"> |
| 46 | <intent-filter> |
| 47 | <action android:name="android.intent.action.VIEW" /> |
| 48 | <category android:name="android.intent.category.DEFAULT" /> |
| 49 | <category android:name="android.intent.category.BROWSABLE" /> |
| 50 | <data android:scheme="rtsp" /> |
| 51 | </intent-filter> |
| 52 | <intent-filter> |
| 53 | <action android:name="android.intent.action.VIEW" /> |
| 54 | <category android:name="android.intent.category.DEFAULT" /> |
| 55 | <category android:name="android.intent.category.BROWSABLE" /> |
| 56 | <data android:scheme="http" /> |
| 57 | <data android:scheme="https" /> |
| 58 | <data android:scheme="content" /> |
| 59 | <data android:scheme="file" /> |
| 60 | <data android:mimeType="video/mpeg4" /> |
| 61 | <data android:mimeType="video/mp4" /> |
| 62 | <data android:mimeType="video/3gp" /> |
| 63 | <data android:mimeType="video/3gpp" /> |
| 64 | <data android:mimeType="video/3gpp2" /> |
| 65 | <data android:mimeType="video/webm" /> |
Chih-Chung Chang | 4c89478 | 2011-10-31 11:23:43 +0800 | [diff] [blame] | 66 | <data android:mimeType="video/avi" /> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 67 | <data android:mimeType="application/sdp" /> |
| 68 | </intent-filter> |
| 69 | <intent-filter> |
| 70 | !-- HTTP live support --> |
| 71 | <action android:name="android.intent.action.VIEW" /> |
| 72 | <category android:name="android.intent.category.DEFAULT" /> |
| 73 | <category android:name="android.intent.category.BROWSABLE" /> |
| 74 | <data android:scheme="http" /> |
Chih-Chung Chang | 360f1db | 2011-10-24 16:45:02 +0800 | [diff] [blame] | 75 | <data android:scheme="https" /> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 76 | <data android:mimeType="audio/x-mpegurl" /> |
| 77 | <data android:mimeType="audio/mpegurl" /> |
| 78 | <data android:mimeType="application/vnd.apple.mpegurl" /> |
| 79 | <data android:mimeType="application/x-mpegurl" /> |
| 80 | </intent-filter> |
| 81 | </activity> |
Owen Lin | d6db8ea | 2011-08-18 21:48:19 +0800 | [diff] [blame] | 82 | |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 83 | <activity android:name="com.android.gallery3d.app.Gallery" android:label="@string/app_name" |
| 84 | android:configChanges="keyboardHidden|orientation|screenSize"> |
| 85 | <intent-filter> |
| 86 | <action android:name="android.intent.action.MAIN" /> |
Jeff Brown | 4b8b92d | 2011-11-28 17:23:56 -0800 | [diff] [blame] | 87 | <category android:name="android.intent.category.DEFAULT" /> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 88 | <category android:name="android.intent.category.LAUNCHER" /> |
Jeff Brown | 4b8b92d | 2011-11-28 17:23:56 -0800 | [diff] [blame] | 89 | <category android:name="android.intent.category.APP_GALLERY" /> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 90 | </intent-filter> |
| 91 | <intent-filter> |
| 92 | <action android:name="android.intent.action.GET_CONTENT" /> |
| 93 | <category android:name="android.intent.category.OPENABLE" /> |
| 94 | <data android:mimeType="vnd.android.cursor.dir/image" /> |
| 95 | </intent-filter> |
| 96 | <intent-filter> |
| 97 | <action android:name="android.intent.action.GET_CONTENT" /> |
| 98 | <category android:name="android.intent.category.OPENABLE" /> |
| 99 | <category android:name="android.intent.category.DEFAULT" /> |
| 100 | <data android:mimeType="image/*" /> |
| 101 | <data android:mimeType="video/*" /> |
| 102 | </intent-filter> |
| 103 | <intent-filter> |
| 104 | <action android:name="android.intent.action.VIEW" /> |
| 105 | <category android:name="android.intent.category.DEFAULT" /> |
| 106 | <data android:mimeType="vnd.android.cursor.dir/image" /> |
| 107 | <data android:mimeType="vnd.android.cursor.dir/video" /> |
| 108 | </intent-filter> |
| 109 | <intent-filter> |
| 110 | <action android:name="android.intent.action.VIEW" /> |
| 111 | <action android:name="com.android.camera.action.REVIEW" /> |
| 112 | <category android:name="android.intent.category.DEFAULT" /> |
| 113 | <category android:name="android.intent.category.BROWSABLE" /> |
| 114 | <data android:scheme="" /> |
| 115 | <data android:scheme="http" /> |
| 116 | <data android:scheme="https" /> |
| 117 | <data android:scheme="content" /> |
| 118 | <data android:scheme="file" /> |
| 119 | <data android:mimeType="image/bmp" /> |
| 120 | <data android:mimeType="image/jpeg" /> |
| 121 | <data android:mimeType="image/gif" /> |
| 122 | <data android:mimeType="image/png" /> |
| 123 | <data android:mimeType="image/x-ms-bmp" /> |
| 124 | <data android:mimeType="image/vnd.wap.wbmp" /> |
| 125 | </intent-filter> |
| 126 | <intent-filter> |
| 127 | <action android:name="com.android.camera.action.REVIEW" /> |
| 128 | <category android:name="android.intent.category.DEFAULT" /> |
| 129 | <category android:name="android.intent.category.BROWSABLE" /> |
| 130 | <data android:scheme="http" /> |
| 131 | <data android:scheme="https" /> |
| 132 | <data android:scheme="content" /> |
| 133 | <data android:scheme="file" /> |
| 134 | <data android:mimeType="video/mpeg4" /> |
| 135 | <data android:mimeType="video/mp4" /> |
| 136 | <data android:mimeType="video/3gp" /> |
| 137 | <data android:mimeType="video/3gpp" /> |
| 138 | <data android:mimeType="video/3gpp2" /> |
| 139 | <data android:mimeType="application/sdp" /> |
| 140 | </intent-filter> |
| 141 | <!-- We do NOT support the PICK intent, we add these intent-filter for |
| 142 | backward compatibility. Handle it as GET_CONTENT. --> |
| 143 | <intent-filter> |
| 144 | <action android:name="android.intent.action.PICK" /> |
| 145 | <category android:name="android.intent.category.DEFAULT" /> |
| 146 | <data android:mimeType="image/*" /> |
| 147 | <data android:mimeType="video/*" /> |
| 148 | </intent-filter> |
| 149 | <intent-filter> |
| 150 | <action android:name="android.intent.action.PICK" /> |
| 151 | <category android:name="android.intent.category.DEFAULT" /> |
| 152 | <data android:mimeType="vnd.android.cursor.dir/image" /> |
| 153 | <data android:mimeType="vnd.android.cursor.dir/video" /> |
| 154 | </intent-filter> |
| 155 | </activity> |
| 156 | |
Owen Lin | 2733d79 | 2011-09-01 14:11:19 +0800 | [diff] [blame] | 157 | <!-- we add this activity-alias for shortcut backward compatibility --> |
| 158 | <!-- Note: The alias must put after the target activity --> |
| 159 | <activity-alias android:name="com.cooliris.media.Gallery" |
| 160 | android:targetActivity="com.android.gallery3d.app.Gallery" |
| 161 | android:configChanges="keyboardHidden|orientation|screenSize" |
Chih-Chung Chang | 4c89478 | 2011-10-31 11:23:43 +0800 | [diff] [blame] | 162 | android:label="@string/app_name"> |
Owen Lin | 2733d79 | 2011-09-01 14:11:19 +0800 | [diff] [blame] | 163 | <intent-filter> |
| 164 | <action android:name="android.intent.action.MAIN" /> |
| 165 | </intent-filter> |
| 166 | </activity-alias> |
| 167 | |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 168 | <!-- This activity receives USB_DEVICE_ATTACHED Intents and springboards to main Gallery activity. --> |
| 169 | <activity android:name="com.android.gallery3d.app.UsbDeviceActivity" android:label="@string/app_name" |
| 170 | android:taskAffinity="" |
| 171 | android:launchMode="singleInstance"> |
| 172 | <intent-filter> |
| 173 | <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> |
| 174 | </intent-filter> |
| 175 | <meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" |
| 176 | android:resource="@xml/device_filter" /> |
| 177 | </activity> |
| 178 | |
| 179 | <activity android:name="com.android.gallery3d.app.Wallpaper" |
| 180 | android:configChanges="keyboardHidden|orientation|screenSize" |
| 181 | android:theme="@style/android:Theme.Translucent.NoTitleBar"> |
| 182 | <intent-filter android:label="@string/camera_setas_wallpaper"> |
| 183 | <action android:name="android.intent.action.ATTACH_DATA" /> |
| 184 | <data android:mimeType="image/*" /> |
| 185 | <category android:name="android.intent.category.DEFAULT" /> |
| 186 | </intent-filter> |
| 187 | <intent-filter android:label="@string/app_name"> |
| 188 | <action android:name="android.intent.action.SET_WALLPAPER" /> |
| 189 | <category android:name="android.intent.category.DEFAULT" /> |
| 190 | </intent-filter> |
| 191 | <meta-data android:name="android.wallpaper.preview" |
| 192 | android:resource="@xml/wallpaper_picker_preview" /> |
| 193 | </activity> |
| 194 | <activity android:name="com.android.gallery3d.app.CropImage" |
| 195 | android:configChanges="keyboardHidden|orientation|screenSize" |
Chih-Chung Chang | 338d029 | 2011-09-29 13:34:18 +0800 | [diff] [blame] | 196 | android:label="@string/crop_label" |
| 197 | android:process=":crop"> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 198 | <intent-filter android:label="@string/crop_label"> |
| 199 | <action android:name="com.android.camera.action.CROP" /> |
| 200 | <data android:scheme="http" /> |
| 201 | <data android:scheme="https" /> |
| 202 | <data android:scheme="content" /> |
| 203 | <data android:scheme="file" /> |
| 204 | <data android:scheme="" /> |
| 205 | <data android:mimeType="image/*" /> |
| 206 | <category android:name="android.intent.category.DEFAULT" /> |
| 207 | <category android:name="android.intent.category.ALTERNATIVE" /> |
| 208 | <category android:name="android.intent.category.SELECTED_ALTERNATIVE" /> |
| 209 | </intent-filter> |
| 210 | </activity> |
Yuli Huang | 6a12ad7 | 2011-09-12 22:25:30 +0800 | [diff] [blame] | 211 | <activity android:name="com.android.gallery3d.photoeditor.PhotoEditor" |
Chih-Chung Chang | 90fff68 | 2012-05-31 13:34:15 -0700 | [diff] [blame] | 212 | android:label="@string/app_name" |
Yuli Huang | 6a12ad7 | 2011-09-12 22:25:30 +0800 | [diff] [blame] | 213 | android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" |
| 214 | android:configChanges="keyboardHidden|orientation|screenSize" |
Yuli Huang | 5e1b115 | 2012-05-07 18:13:29 +0800 | [diff] [blame] | 215 | android:hardwareAccelerated="true" |
| 216 | android:process=":edit"> |
Yuli Huang | 6a12ad7 | 2011-09-12 22:25:30 +0800 | [diff] [blame] | 217 | <intent-filter> |
| 218 | <action android:name="android.intent.action.EDIT" /> |
| 219 | <data android:mimeType="image/*" /> |
| 220 | <category android:name="android.intent.category.DEFAULT" /> |
| 221 | </intent-filter> |
| 222 | </activity> |
Ruei-sung Lin | d37ff2e | 2011-09-19 14:33:17 +0800 | [diff] [blame] | 223 | <uses-library android:name="com.google.android.media.effects" |
| 224 | android:required="false" /> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 225 | |
| 226 | <activity android:name="com.android.gallery3d.app.SlideshowDream" |
Ruei-sung Lin | d37ff2e | 2011-09-19 14:33:17 +0800 | [diff] [blame] | 227 | android:label="@string/slideshow_dream_name" |
| 228 | android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" |
| 229 | android:hardwareAccelerated="true"> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 230 | <intent-filter> |
| 231 | <action android:name="android.intent.action.MAIN" /> |
| 232 | <category android:name="android.intent.category.DEFAULT" /> |
| 233 | <category android:name="android.intent.category.DREAM" /> |
| 234 | </intent-filter> |
| 235 | </activity> |
| 236 | |
| 237 | <activity android:name="com.android.gallery3d.settings.GallerySettings" |
Owen Lin | 21cd97f | 2011-09-13 10:45:22 +0800 | [diff] [blame] | 238 | android:theme="@android:style/Theme.Holo" |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 239 | android:configChanges="orientation|keyboardHidden|screenSize" /> |
| 240 | |
| 241 | <provider android:name="com.android.gallery3d.provider.GalleryProvider" |
| 242 | android:syncable="false" |
| 243 | android:grantUriPermissions="true" |
| 244 | android:authorities="com.android.gallery3d.provider" /> |
Owen Lin | d6db8ea | 2011-08-18 21:48:19 +0800 | [diff] [blame] | 245 | <activity android:name="com.android.gallery3d.gadget.WidgetClickHandler" /> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 246 | <activity android:name="com.android.gallery3d.app.DialogPicker" |
| 247 | android:configChanges="keyboardHidden|orientation|screenSize" |
| 248 | android:theme="@style/DialogPickerTheme"/> |
| 249 | <activity android:name="com.android.gallery3d.app.AlbumPicker" |
| 250 | android:configChanges="keyboardHidden|orientation|screenSize" |
| 251 | android:theme="@style/DialogPickerTheme"/> |
Owen Lin | d6db8ea | 2011-08-18 21:48:19 +0800 | [diff] [blame] | 252 | <activity android:name="com.android.gallery3d.gadget.WidgetTypeChooser" |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 253 | android:configChanges="keyboardHidden|orientation|screenSize" |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 254 | android:theme="@android:style/Theme.Holo.Dialog"/> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 255 | |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 256 | <activity android:name="com.android.camera.Camera" |
Chih-Chung Chang | 2250dfb | 2012-03-13 12:28:02 +0800 | [diff] [blame] | 257 | android:taskAffinity="com.android.camera" |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 258 | android:label="@string/camera_label" |
| 259 | android:theme="@style/ThemeCamera" |
| 260 | android:icon="@mipmap/ic_launcher_camera" |
| 261 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 262 | android:clearTaskOnLaunch="true" |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 263 | android:windowSoftInputMode="stateAlwaysHidden|adjustPan"> |
| 264 | <intent-filter> |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 265 | <action android:name="android.media.action.IMAGE_CAPTURE" /> |
| 266 | <category android:name="android.intent.category.DEFAULT" /> |
| 267 | </intent-filter> |
| 268 | <intent-filter> |
| 269 | <action android:name="android.media.action.STILL_IMAGE_CAMERA" /> |
| 270 | <category android:name="android.intent.category.DEFAULT" /> |
| 271 | </intent-filter> |
| 272 | </activity> |
Chih-Chung Chang | afb49dc | 2012-05-04 15:26:02 +0800 | [diff] [blame] | 273 | |
| 274 | <activity-alias android:icon="@mipmap/ic_launcher_camera" |
| 275 | android:label="@string/camera_label" |
| 276 | android:name="com.android.camera.CameraLauncher" |
| 277 | android:targetActivity="com.android.camera.Camera" > |
| 278 | <intent-filter> |
| 279 | <action android:name="android.intent.action.MAIN" /> |
| 280 | <category android:name="android.intent.category.DEFAULT" /> |
| 281 | <category android:name="android.intent.category.LAUNCHER" /> |
| 282 | </intent-filter> |
| 283 | </activity-alias> |
| 284 | |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 285 | <activity android:name="com.android.camera.VideoCamera" |
Chih-Chung Chang | 2250dfb | 2012-03-13 12:28:02 +0800 | [diff] [blame] | 286 | android:taskAffinity="com.android.camera" |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 287 | android:label="@string/video_camera_label" |
| 288 | android:theme="@style/ThemeCamera" |
| 289 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 290 | android:icon="@mipmap/ic_launcher_video_camera" |
| 291 | android:clearTaskOnLaunch="true" |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 292 | android:windowSoftInputMode="stateAlwaysHidden|adjustPan"> |
| 293 | <intent-filter> |
| 294 | <action android:name="android.media.action.VIDEO_CAMERA" /> |
| 295 | <category android:name="android.intent.category.DEFAULT" /> |
| 296 | </intent-filter> |
| 297 | <intent-filter> |
| 298 | <action android:name="android.media.action.VIDEO_CAPTURE" /> |
| 299 | <category android:name="android.intent.category.DEFAULT" /> |
| 300 | </intent-filter> |
| 301 | </activity> |
Pin Ting | fb46bf8 | 2012-03-15 14:46:53 +0800 | [diff] [blame] | 302 | <activity android:name="com.android.camera.PanoramaActivity" |
Chih-Chung Chang | 2250dfb | 2012-03-13 12:28:02 +0800 | [diff] [blame] | 303 | android:taskAffinity="com.android.camera" |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 304 | android:label="@string/pano_dialog_title" |
| 305 | android:theme="@style/ThemeCamera" |
| 306 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 307 | android:clearTaskOnLaunch="true" |
Wu-cheng Li | 5320ee4 | 2012-03-19 15:42:27 +0800 | [diff] [blame] | 308 | android:windowSoftInputMode="stateAlwaysHidden|adjustPan"> |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 309 | </activity> |
Owen Lin | d6db8ea | 2011-08-18 21:48:19 +0800 | [diff] [blame] | 310 | <receiver android:name="com.android.gallery3d.gadget.PhotoAppWidgetProvider" |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 311 | android:label="@string/appwidget_title"> |
| 312 | <intent-filter> |
| 313 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
| 314 | </intent-filter> |
| 315 | <meta-data android:name="android.appwidget.provider" |
| 316 | android:resource="@xml/widget_info" /> |
| 317 | </receiver> |
| 318 | <receiver android:name="com.android.gallery3d.app.PackagesMonitor"> |
| 319 | <intent-filter> |
| 320 | <action android:name="android.intent.action.PACKAGE_ADDED"/> |
| 321 | <action android:name="android.intent.action.PACKAGE_REMOVED"/> |
Chih-Chung Chang | d091538 | 2011-11-30 14:32:35 +0800 | [diff] [blame] | 322 | <action android:name="android.intent.action.PACKAGE_CHANGED"/> |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 323 | <data android:scheme="package"/> |
| 324 | </intent-filter> |
| 325 | </receiver> |
Chih-Chung Chang | 6376478 | 2012-03-08 20:10:53 +0800 | [diff] [blame] | 326 | <receiver android:name="com.android.camera.CameraButtonIntentReceiver"> |
| 327 | <intent-filter> |
| 328 | <action android:name="android.intent.action.CAMERA_BUTTON"/> |
| 329 | </intent-filter> |
| 330 | </receiver> |
Chih-Chung Chang | a27fc9e | 2012-03-12 16:04:59 +0800 | [diff] [blame] | 331 | <receiver android:name="com.android.camera.DisableCameraReceiver"> |
| 332 | <intent-filter> |
| 333 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 334 | </intent-filter> |
| 335 | </receiver> |
Owen Lin | d6db8ea | 2011-08-18 21:48:19 +0800 | [diff] [blame] | 336 | <service android:name="com.android.gallery3d.gadget.WidgetService" |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 337 | android:permission="android.permission.BIND_REMOTEVIEWS"/> |
Owen Lin | d6db8ea | 2011-08-18 21:48:19 +0800 | [diff] [blame] | 338 | <activity android:name="com.android.gallery3d.gadget.WidgetConfigure" |
Owen Lin | f9a0a43 | 2011-08-17 22:07:43 +0800 | [diff] [blame] | 339 | android:configChanges="keyboardHidden|orientation|screenSize" |
| 340 | android:theme="@style/android:Theme.Translucent.NoTitleBar"> |
| 341 | <intent-filter> |
| 342 | <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" /> |
| 343 | </intent-filter> |
| 344 | </activity> |
| 345 | </application> |
| 346 | </manifest> |