blob: f659fa8071dae6e7589140a21fe032ab2205500a [file] [log] [blame]
Owen Linf9a0a432011-08-17 22:07:43 +08001<?xml version="1.0" encoding="utf-8"?>
2
Bart Searsa83166d2013-05-20 15:59:20 -07003<manifest android:versionCode="40012"
4 android:versionName="1.1.40012"
Owen Linf9a0a432011-08-17 22:07:43 +08005 xmlns:android="http://schemas.android.com/apk/res/android"
6 package="com.android.gallery3d">
7
8 <original-package android:name="com.android.gallery3d" />
9
John Reck71bfefa2013-02-26 15:19:30 -080010 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" />
Chih-Chung Chang63764782012-03-08 20:10:53 +080011
Owen Linca181a62012-10-16 10:22:54 +080012 <permission android:name="com.android.gallery3d.permission.GALLERY_PROVIDER"
Mangesh Ghiware589381b2012-10-30 15:41:00 -070013 android:protectionLevel="signatureOrSystem" />
Owen Linca181a62012-10-16 10:22:54 +080014
Owen Linf9a0a432011-08-17 22:07:43 +080015 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
16 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
17 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Chih-Chung Chang63764782012-03-08 20:10:53 +080018 <uses-permission android:name="android.permission.CAMERA" />
Owen Linf9a0a432011-08-17 22:07:43 +080019 <uses-permission android:name="android.permission.GET_ACCOUNTS" />
20 <uses-permission android:name="android.permission.INTERNET" />
21 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
Martijn Coenen33ef0372012-03-26 18:25:50 -070022 <uses-permission android:name="android.permission.NFC" />
Owen Linf9a0a432011-08-17 22:07:43 +080023 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Chih-Chung Changa27fc9e2012-03-12 16:04:59 +080024 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Chih-Chung Chang63764782012-03-08 20:10:53 +080025 <uses-permission android:name="android.permission.RECORD_AUDIO" />
Owen Linf9a0a432011-08-17 22:07:43 +080026 <uses-permission android:name="android.permission.SET_WALLPAPER" />
27 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
28 <uses-permission android:name="android.permission.VIBRATE" />
29 <uses-permission android:name="android.permission.WAKE_LOCK" />
30 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Owen Linf9a0a432011-08-17 22:07:43 +080031 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Chih-Chung Chang63764782012-03-08 20:10:53 +080032 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
John Reck0c7d07e2013-02-06 13:18:47 -080033 <uses-permission android:name="com.android.gallery3d.permission.GALLERY_PROVIDER" />
Danesh M55979992012-07-28 23:44:56 -040034 <uses-permission android:name="android.permission.PREVENT_POWER_KEY" />
Owen Linf9a0a432011-08-17 22:07:43 +080035
36 <supports-screens android:smallScreens="false"
37 android:normalScreens="true" android:largeScreens="true"
38 android:anyDensity="true" />
39
40 <application android:icon="@mipmap/ic_launcher_gallery" android:label="@string/app_name"
41 android:name="com.android.gallery3d.app.GalleryAppImpl"
Chih-Chung Chang63764782012-03-08 20:10:53 +080042 android:theme="@style/Theme.Gallery"
Wu-cheng Li680ab6c2012-04-30 17:43:01 +080043 android:logo="@mipmap/ic_launcher_gallery"
nicolasroardf37e1e92012-09-27 12:20:11 -070044 android:hardwareAccelerated="true"
Angus Kong6fdc8752012-11-01 11:49:43 +080045 android:largeHeap="true"
46 android:backupAgent="com.android.camera.CameraBackupAgent"
47 android:restoreAnyVersion="true">
Chih-Chung Chang63764782012-03-08 20:10:53 +080048 <uses-library android:name="com.google.android.media.effects" android:required="false" />
Angus Kong6fdc8752012-11-01 11:49:43 +080049 <meta-data android:name="com.google.android.backup.api_key"
50 android:value="AEdPqrEAAAAIRIXquXawbz6duuuCIUAZ_YJv1zbFMMcjZ0NoVw" />
Owen Linf9a0a432011-08-17 22:07:43 +080051 <activity android:name="com.android.gallery3d.app.MovieActivity"
52 android:label="@string/movie_view_label"
53 android:configChanges="orientation|keyboardHidden|screenSize">
54 <intent-filter>
55 <action android:name="android.intent.action.VIEW" />
56 <category android:name="android.intent.category.DEFAULT" />
57 <category android:name="android.intent.category.BROWSABLE" />
58 <data android:scheme="rtsp" />
59 </intent-filter>
60 <intent-filter>
61 <action android:name="android.intent.action.VIEW" />
62 <category android:name="android.intent.category.DEFAULT" />
63 <category android:name="android.intent.category.BROWSABLE" />
64 <data android:scheme="http" />
65 <data android:scheme="https" />
66 <data android:scheme="content" />
67 <data android:scheme="file" />
68 <data android:mimeType="video/mpeg4" />
69 <data android:mimeType="video/mp4" />
70 <data android:mimeType="video/3gp" />
71 <data android:mimeType="video/3gpp" />
72 <data android:mimeType="video/3gpp2" />
73 <data android:mimeType="video/webm" />
Chih-Chung Chang4c894782011-10-31 11:23:43 +080074 <data android:mimeType="video/avi" />
Owen Linf9a0a432011-08-17 22:07:43 +080075 <data android:mimeType="application/sdp" />
Vasantha Ballaa41f9b52013-07-26 19:41:04 +053076 <data android:mimeType="video/x-msvideo"/>
77 <data android:mimeType="video/divx" />
Owen Linf9a0a432011-08-17 22:07:43 +080078 </intent-filter>
79 <intent-filter>
Sungmin Choi342d3bc2013-06-05 20:51:12 -070080 <!-- HTTP live support -->
Owen Linf9a0a432011-08-17 22:07:43 +080081 <action android:name="android.intent.action.VIEW" />
82 <category android:name="android.intent.category.DEFAULT" />
83 <category android:name="android.intent.category.BROWSABLE" />
84 <data android:scheme="http" />
Chih-Chung Chang360f1db2011-10-24 16:45:02 +080085 <data android:scheme="https" />
Owen Linf9a0a432011-08-17 22:07:43 +080086 <data android:mimeType="audio/x-mpegurl" />
87 <data android:mimeType="audio/mpegurl" />
88 <data android:mimeType="application/vnd.apple.mpegurl" />
89 <data android:mimeType="application/x-mpegurl" />
90 </intent-filter>
91 </activity>
Owen Lind6db8ea2011-08-18 21:48:19 +080092
John Reck93074e92013-04-19 10:04:12 -070093 <activity android:name="com.android.gallery3d.app.Gallery" android:label="@string/app_name"
94 android:configChanges="keyboardHidden|orientation|screenSize">
Owen Linf9a0a432011-08-17 22:07:43 +080095 <intent-filter>
96 <action android:name="android.intent.action.MAIN" />
Jeff Brown4b8b92d2011-11-28 17:23:56 -080097 <category android:name="android.intent.category.DEFAULT" />
Owen Linf9a0a432011-08-17 22:07:43 +080098 <category android:name="android.intent.category.LAUNCHER" />
Jeff Brown4b8b92d2011-11-28 17:23:56 -080099 <category android:name="android.intent.category.APP_GALLERY" />
Owen Linf9a0a432011-08-17 22:07:43 +0800100 </intent-filter>
101 <intent-filter>
102 <action android:name="android.intent.action.GET_CONTENT" />
103 <category android:name="android.intent.category.OPENABLE" />
104 <data android:mimeType="vnd.android.cursor.dir/image" />
105 </intent-filter>
106 <intent-filter>
107 <action android:name="android.intent.action.GET_CONTENT" />
108 <category android:name="android.intent.category.OPENABLE" />
109 <category android:name="android.intent.category.DEFAULT" />
110 <data android:mimeType="image/*" />
111 <data android:mimeType="video/*" />
112 </intent-filter>
John Reckf6e687b2013-03-08 11:19:27 -0800113 <!-- We do NOT support the PICK intent, we add these intent-filter for
114 backward compatibility. Handle it as GET_CONTENT. -->
115 <intent-filter>
116 <action android:name="android.intent.action.PICK" />
117 <category android:name="android.intent.category.DEFAULT" />
118 <data android:mimeType="image/*" />
119 <data android:mimeType="video/*" />
120 </intent-filter>
121 <intent-filter>
122 <action android:name="android.intent.action.PICK" />
123 <category android:name="android.intent.category.DEFAULT" />
124 <data android:mimeType="vnd.android.cursor.dir/image" />
125 <data android:mimeType="vnd.android.cursor.dir/video" />
126 </intent-filter>
Owen Linf9a0a432011-08-17 22:07:43 +0800127 <intent-filter>
128 <action android:name="android.intent.action.VIEW" />
129 <category android:name="android.intent.category.DEFAULT" />
130 <data android:mimeType="vnd.android.cursor.dir/image" />
131 <data android:mimeType="vnd.android.cursor.dir/video" />
132 </intent-filter>
133 <intent-filter>
134 <action android:name="android.intent.action.VIEW" />
135 <action android:name="com.android.camera.action.REVIEW" />
136 <category android:name="android.intent.category.DEFAULT" />
137 <category android:name="android.intent.category.BROWSABLE" />
138 <data android:scheme="" />
139 <data android:scheme="http" />
140 <data android:scheme="https" />
141 <data android:scheme="content" />
142 <data android:scheme="file" />
143 <data android:mimeType="image/bmp" />
144 <data android:mimeType="image/jpeg" />
145 <data android:mimeType="image/gif" />
146 <data android:mimeType="image/png" />
Angus Kong9874da22013-01-16 15:52:32 -0800147 <data android:mimeType="image/webp" />
Owen Linf9a0a432011-08-17 22:07:43 +0800148 <data android:mimeType="image/x-ms-bmp" />
149 <data android:mimeType="image/vnd.wap.wbmp" />
Mangesh Ghiware07b70a52012-10-10 15:56:29 -0700150 <data android:mimeType="application/vnd.google.panorama360+jpg" />
Owen Linf9a0a432011-08-17 22:07:43 +0800151 </intent-filter>
152 <intent-filter>
153 <action android:name="com.android.camera.action.REVIEW" />
154 <category android:name="android.intent.category.DEFAULT" />
155 <category android:name="android.intent.category.BROWSABLE" />
156 <data android:scheme="http" />
157 <data android:scheme="https" />
158 <data android:scheme="content" />
159 <data android:scheme="file" />
160 <data android:mimeType="video/mpeg4" />
161 <data android:mimeType="video/mp4" />
162 <data android:mimeType="video/3gp" />
163 <data android:mimeType="video/3gpp" />
164 <data android:mimeType="video/3gpp2" />
165 <data android:mimeType="application/sdp" />
166 </intent-filter>
Owen Linf9a0a432011-08-17 22:07:43 +0800167 </activity>
168
John Reck93074e92013-04-19 10:04:12 -0700169 <!-- we add this activity-alias for shortcut backward compatibility -->
170 <!-- Note: The alias must put after the target activity -->
171 <activity-alias android:name="com.cooliris.media.Gallery"
172 android:targetActivity="com.android.gallery3d.app.Gallery"
John Reckd8732612013-02-27 16:48:16 -0800173 android:configChanges="keyboardHidden|orientation|screenSize"
John Reck93074e92013-04-19 10:04:12 -0700174 android:label="@string/app_name">
175 <intent-filter>
176 <action android:name="android.intent.action.MAIN" />
177 </intent-filter>
178 </activity-alias>
John Reckd8732612013-02-27 16:48:16 -0800179
Bobby Georgescud3aac522012-12-26 00:52:28 -0800180 <!-- This activity receives USB_DEVICE_ATTACHED intents and allows importing
181 media from attached MTP devices, like cameras and camera phones -->
182 <activity android:launchMode="singleInstance"
183 android:taskAffinity="" android:name="com.android.gallery3d.ingest.IngestActivity"
Bobby Georgescuc8a9e862013-02-01 12:57:14 -0800184 android:configChanges="orientation|screenSize"
Bobby Georgescud3aac522012-12-26 00:52:28 -0800185 android:label="@string/app_name">
Owen Linf9a0a432011-08-17 22:07:43 +0800186 <intent-filter>
187 <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
188 </intent-filter>
189 <meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
190 android:resource="@xml/device_filter" />
191 </activity>
Bobby Georgescud3aac522012-12-26 00:52:28 -0800192 <service android:name="com.android.gallery3d.ingest.IngestService" />
Owen Linf9a0a432011-08-17 22:07:43 +0800193
194 <activity android:name="com.android.gallery3d.app.Wallpaper"
195 android:configChanges="keyboardHidden|orientation|screenSize"
196 android:theme="@style/android:Theme.Translucent.NoTitleBar">
197 <intent-filter android:label="@string/camera_setas_wallpaper">
198 <action android:name="android.intent.action.ATTACH_DATA" />
199 <data android:mimeType="image/*" />
200 <category android:name="android.intent.category.DEFAULT" />
201 </intent-filter>
202 <intent-filter android:label="@string/app_name">
203 <action android:name="android.intent.action.SET_WALLPAPER" />
204 <category android:name="android.intent.category.DEFAULT" />
205 </intent-filter>
206 <meta-data android:name="android.wallpaper.preview"
207 android:resource="@xml/wallpaper_picker_preview" />
208 </activity>
Teng-Hui Zhu3f1f1ba2012-08-24 14:50:37 -0700209 <activity android:name="com.android.gallery3d.app.TrimVideo"
210 android:label="@string/trim_label">
211 </activity>
nicolasroardf37e1e92012-09-27 12:20:11 -0700212
nicolasroard0ee91a22012-10-01 00:25:11 -0700213 <permission android:name="com.android.gallery3d.filtershow.permission.READ"
214 android:protectionLevel="signature" />
215
216 <permission android:name="com.android.gallery3d.filtershow.permission.WRITE"
217 android:protectionLevel="signature" />
218
219 <provider
220 android:name="com.android.gallery3d.filtershow.provider.SharedImageProvider"
221 android:authorities="com.android.gallery3d.filtershow.provider.SharedImageProvider"
222 android:grantUriPermissions="true"
223 android:readPermission="com.android.gallery3d.filtershow.permission.READ"
224 android:writePermission="com.android.gallery3d.filtershow.permission.WRITE" />
nicolasroardf37e1e92012-09-27 12:20:11 -0700225 <activity
226 android:name="com.android.gallery3d.filtershow.FilterShowActivity"
227 android:label="@string/title_activity_filter_show"
nicolasroard9cd73082012-11-28 19:11:42 -0800228 android:theme="@style/Theme.FilterShow"
nicolasroard60d25272012-10-18 16:16:36 -0700229 android:configChanges="keyboardHidden|orientation|screenSize">
nicolasroardf37e1e92012-09-27 12:20:11 -0700230 <intent-filter>
231 <action android:name="android.intent.action.EDIT" />
232 <category android:name="android.intent.category.DEFAULT" />
233 <data android:mimeType="image/*" />
234 </intent-filter>
235 <intent-filter>
236 <action android:name="action_nextgen_edit" />
237 <category android:name="android.intent.category.DEFAULT" />
238 <data android:mimeType="image/*" />
239 </intent-filter>
Ruben Brunk6fe165b2013-04-04 17:20:42 -0700240 </activity>
241
242 <activity
243 android:name="com.android.gallery3d.filtershow.crop.CropActivity"
244 android:label="@string/crop"
245 android:theme="@style/Theme.FilterShow"
246 android:configChanges="keyboardHidden|orientation|screenSize">
247 <intent-filter android:label="@string/crop_label">
Ruben Brunk795776f2012-12-05 22:07:12 -0800248 <action android:name="com.android.camera.action.CROP" />
Ruben Brunk5aa454b2012-10-25 15:53:42 -0700249 <data android:scheme="http" />
250 <data android:scheme="https" />
251 <data android:scheme="content" />
252 <data android:scheme="file" />
253 <data android:scheme="" />
Ruben Brunk63926d22012-10-17 00:40:35 -0700254 <data android:mimeType="image/*" />
255 <category android:name="android.intent.category.DEFAULT" />
256 <category android:name="android.intent.category.ALTERNATIVE" />
257 <category android:name="android.intent.category.SELECTED_ALTERNATIVE" />
258 </intent-filter>
nicolasroardf37e1e92012-09-27 12:20:11 -0700259 </activity>
260
Ruei-sung Lind37ff2e2011-09-19 14:33:17 +0800261 <uses-library android:name="com.google.android.media.effects"
262 android:required="false" />
Owen Linf9a0a432011-08-17 22:07:43 +0800263
Owen Linf9a0a432011-08-17 22:07:43 +0800264 <activity android:name="com.android.gallery3d.settings.GallerySettings"
Ahbong Changab15e832012-08-21 14:06:51 +0800265 android:theme="@style/Theme.Gallery"
Owen Linf9a0a432011-08-17 22:07:43 +0800266 android:configChanges="orientation|keyboardHidden|screenSize" />
267
268 <provider android:name="com.android.gallery3d.provider.GalleryProvider"
269 android:syncable="false"
270 android:grantUriPermissions="true"
Nick Kraleviche8e80ba2012-08-03 15:50:39 -0700271 android:exported="true"
Owen Linca181a62012-10-16 10:22:54 +0800272 android:permission="com.android.gallery3d.permission.GALLERY_PROVIDER"
Owen Linf9a0a432011-08-17 22:07:43 +0800273 android:authorities="com.android.gallery3d.provider" />
George Mountc8419b42013-02-20 17:01:54 -0800274 <provider
275 android:name="com.android.photos.data.PhotoProvider"
276 android:authorities="com.android.gallery3d.photoprovider"
277 android:syncable="false"
278 android:exported="false"/>
Owen Lind6db8ea2011-08-18 21:48:19 +0800279 <activity android:name="com.android.gallery3d.gadget.WidgetClickHandler" />
Owen Linf9a0a432011-08-17 22:07:43 +0800280 <activity android:name="com.android.gallery3d.app.DialogPicker"
281 android:configChanges="keyboardHidden|orientation|screenSize"
282 android:theme="@style/DialogPickerTheme"/>
283 <activity android:name="com.android.gallery3d.app.AlbumPicker"
284 android:configChanges="keyboardHidden|orientation|screenSize"
285 android:theme="@style/DialogPickerTheme"/>
Owen Lind6db8ea2011-08-18 21:48:19 +0800286 <activity android:name="com.android.gallery3d.gadget.WidgetTypeChooser"
Owen Linf9a0a432011-08-17 22:07:43 +0800287 android:configChanges="keyboardHidden|orientation|screenSize"
Ahbong Changab15e832012-08-21 14:06:51 +0800288 android:theme="@style/Theme.Gallery.Dialog"/>
Owen Linf9a0a432011-08-17 22:07:43 +0800289
Michael Kolba1f42582012-09-10 15:14:56 -0700290 <activity android:name="com.android.camera.CameraActivity"
Michael Kolb617040c2012-09-16 17:16:25 -0700291 android:taskAffinity="com.android.camera.CameraActivity"
Michael Kolba1f42582012-09-10 15:14:56 -0700292 android:label="@string/camera_label"
293 android:theme="@style/Theme.Camera"
Mangesh Ghiwarec6ece8c2012-09-14 12:40:03 -0700294 android:icon="@mipmap/ic_launcher_camera"
Michael Kolba1f42582012-09-10 15:14:56 -0700295 android:configChanges="orientation|screenSize|keyboardHidden"
296 android:clearTaskOnLaunch="true"
297 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
298 <intent-filter>
Mangesh Ghiwarefd992492012-09-14 12:17:54 -0700299 <action android:name="android.media.action.IMAGE_CAPTURE" />
300 <category android:name="android.intent.category.DEFAULT" />
301 </intent-filter>
302 <intent-filter>
Mangesh Ghiware0454dde2012-09-14 00:10:41 -0700303 <action android:name="android.media.action.STILL_IMAGE_CAMERA" />
304 <category android:name="android.intent.category.DEFAULT" />
305 </intent-filter>
Wu-cheng Li471d8982012-10-31 11:12:05 +0800306 <meta-data android:name="com.android.keyguard.layout"
307 android:resource="@layout/keyguard_widget" />
Mangesh Ghiware0454dde2012-09-14 00:10:41 -0700308 </activity>
309
Wu-cheng Li2e346282012-09-17 17:32:59 +0800310 <activity android:name="com.android.camera.SecureCameraActivity"
311 android:taskAffinity="com.android.camera.SecureCameraActivity"
312 android:excludeFromRecents="true"
313 android:label="@string/camera_label"
314 android:theme="@style/Theme.Camera"
315 android:icon="@mipmap/ic_launcher_camera"
316 android:configChanges="orientation|screenSize|keyboardHidden"
317 android:clearTaskOnLaunch="true"
318 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
319 <intent-filter>
320 <action android:name="android.media.action.STILL_IMAGE_CAMERA_SECURE" />
321 <category android:name="android.intent.category.DEFAULT" />
322 </intent-filter>
Wu-cheng Li5eff2242012-09-25 11:20:27 +0800323 <intent-filter>
324 <action android:name="android.media.action.IMAGE_CAPTURE_SECURE" />
325 <category android:name="android.intent.category.DEFAULT" />
326 </intent-filter>
Wu-cheng Li471d8982012-10-31 11:12:05 +0800327 <meta-data android:name="com.android.keyguard.layout"
328 android:resource="@layout/keyguard_widget" />
Wu-cheng Li2e346282012-09-17 17:32:59 +0800329 </activity>
330
Mangesh Ghiware0454dde2012-09-14 00:10:41 -0700331 <activity-alias android:icon="@mipmap/ic_launcher_camera"
332 android:label="@string/camera_label"
333 android:name="com.android.camera.CameraLauncher"
334 android:targetActivity="com.android.camera.CameraActivity" >
335 <intent-filter>
Michael Kolba1f42582012-09-10 15:14:56 -0700336 <action android:name="android.intent.action.MAIN" />
337 <category android:name="android.intent.category.DEFAULT" />
338 <category android:name="android.intent.category.LAUNCHER" />
339 </intent-filter>
Mangesh Ghiware0454dde2012-09-14 00:10:41 -0700340 </activity-alias>
Michael Kolba1f42582012-09-10 15:14:56 -0700341
Chris Craik09473aa2012-10-11 14:06:45 -0700342 <activity-alias android:icon="@mipmap/ic_launcher_camera"
343 android:label="@string/camera_label"
344 android:name="com.android.camera.Camera"
345 android:targetActivity="com.android.camera.CameraActivity" >
346 <intent-filter>
347 <action android:name="android.intent.action.MAIN" />
348 <category android:name="android.intent.category.DEFAULT" />
349 </intent-filter>
350 </activity-alias>
351
Mangesh Ghiware2bb9b8c2012-10-22 15:47:22 -0700352 <activity-alias android:icon="@mipmap/ic_launcher_video_camera"
353 android:label="@string/video_camera_label"
354 android:name="com.android.camera.VideoCamera"
355 android:targetActivity="com.android.camera.CameraActivity" >
356 <intent-filter>
357 <action android:name="android.media.action.VIDEO_CAMERA" />
358 <category android:name="android.intent.category.DEFAULT" />
359 </intent-filter>
360 <intent-filter>
361 <action android:name="android.media.action.VIDEO_CAPTURE" />
362 <category android:name="android.intent.category.DEFAULT" />
363 </intent-filter>
364 </activity-alias>
365
Owen Lind6db8ea2011-08-18 21:48:19 +0800366 <receiver android:name="com.android.gallery3d.gadget.PhotoAppWidgetProvider"
Owen Linf9a0a432011-08-17 22:07:43 +0800367 android:label="@string/appwidget_title">
368 <intent-filter>
369 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
370 </intent-filter>
371 <meta-data android:name="android.appwidget.provider"
372 android:resource="@xml/widget_info" />
373 </receiver>
374 <receiver android:name="com.android.gallery3d.app.PackagesMonitor">
375 <intent-filter>
376 <action android:name="android.intent.action.PACKAGE_ADDED"/>
377 <action android:name="android.intent.action.PACKAGE_REMOVED"/>
Chih-Chung Changd0915382011-11-30 14:32:35 +0800378 <action android:name="android.intent.action.PACKAGE_CHANGED"/>
Owen Linf9a0a432011-08-17 22:07:43 +0800379 <data android:scheme="package"/>
380 </intent-filter>
381 </receiver>
Hung-ying Tyana56270e2012-06-27 18:25:47 +0800382 <service android:name="com.android.gallery3d.app.PackagesMonitor$AsyncService"/>
Chih-Chung Chang63764782012-03-08 20:10:53 +0800383 <receiver android:name="com.android.camera.CameraButtonIntentReceiver">
384 <intent-filter>
385 <action android:name="android.intent.action.CAMERA_BUTTON"/>
386 </intent-filter>
387 </receiver>
Chih-Chung Changa27fc9e2012-03-12 16:04:59 +0800388 <receiver android:name="com.android.camera.DisableCameraReceiver">
389 <intent-filter>
390 <action android:name="android.intent.action.BOOT_COMPLETED" />
391 </intent-filter>
392 </receiver>
Owen Lind6db8ea2011-08-18 21:48:19 +0800393 <service android:name="com.android.gallery3d.gadget.WidgetService"
Owen Linf9a0a432011-08-17 22:07:43 +0800394 android:permission="android.permission.BIND_REMOTEVIEWS"/>
Owen Lind6db8ea2011-08-18 21:48:19 +0800395 <activity android:name="com.android.gallery3d.gadget.WidgetConfigure"
Owen Linf9a0a432011-08-17 22:07:43 +0800396 android:configChanges="keyboardHidden|orientation|screenSize"
397 android:theme="@style/android:Theme.Translucent.NoTitleBar">
398 <intent-filter>
399 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
400 </intent-filter>
401 </activity>
John Reckf85d9742012-10-24 11:11:51 -0700402 <activity android:name="com.android.camera.ProxyLauncher"
Your Named10468b2012-12-03 14:14:19 -0800403 android:theme="@style/Theme.ProxyLauncher">
John Reckf85d9742012-10-24 11:11:51 -0700404 </activity>
Bobby Georgescua2d0d342012-12-03 13:56:00 -0800405 <service android:name="com.android.gallery3d.app.BatchService" />
Angus Kongc0993982013-01-29 17:43:48 -0800406 <service android:name="com.android.camera.MediaSaveService" />
Owen Linf9a0a432011-08-17 22:07:43 +0800407 </application>
408</manifest>