blob: d5a5ef9fa1f40bcd07eba61d92bae260dad62213 [file] [log] [blame]
Owen Linf9a0a432011-08-17 22:07:43 +08001<?xml version="1.0" encoding="utf-8"?>
2
Bart Sears86d622f2013-04-22 18:43:29 -07003<manifest android:versionCode="40011"
4 android:versionName="1.1.40011"
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" />
Owen Linf9a0a432011-08-17 22:07:43 +080034
35 <supports-screens android:smallScreens="false"
36 android:normalScreens="true" android:largeScreens="true"
37 android:anyDensity="true" />
38
39 <application android:icon="@mipmap/ic_launcher_gallery" android:label="@string/app_name"
40 android:name="com.android.gallery3d.app.GalleryAppImpl"
Chih-Chung Chang63764782012-03-08 20:10:53 +080041 android:theme="@style/Theme.Gallery"
Wu-cheng Li680ab6c2012-04-30 17:43:01 +080042 android:logo="@mipmap/ic_launcher_gallery"
nicolasroardf37e1e92012-09-27 12:20:11 -070043 android:hardwareAccelerated="true"
Angus Kong6fdc8752012-11-01 11:49:43 +080044 android:largeHeap="true"
45 android:backupAgent="com.android.camera.CameraBackupAgent"
46 android:restoreAnyVersion="true">
Chih-Chung Chang63764782012-03-08 20:10:53 +080047 <uses-library android:name="com.google.android.media.effects" android:required="false" />
Angus Kong6fdc8752012-11-01 11:49:43 +080048 <meta-data android:name="com.google.android.backup.api_key"
49 android:value="AEdPqrEAAAAIRIXquXawbz6duuuCIUAZ_YJv1zbFMMcjZ0NoVw" />
Owen Linf9a0a432011-08-17 22:07:43 +080050 <activity android:name="com.android.gallery3d.app.MovieActivity"
51 android:label="@string/movie_view_label"
52 android:configChanges="orientation|keyboardHidden|screenSize">
53 <intent-filter>
54 <action android:name="android.intent.action.VIEW" />
55 <category android:name="android.intent.category.DEFAULT" />
56 <category android:name="android.intent.category.BROWSABLE" />
57 <data android:scheme="rtsp" />
58 </intent-filter>
59 <intent-filter>
60 <action android:name="android.intent.action.VIEW" />
61 <category android:name="android.intent.category.DEFAULT" />
62 <category android:name="android.intent.category.BROWSABLE" />
63 <data android:scheme="http" />
64 <data android:scheme="https" />
65 <data android:scheme="content" />
66 <data android:scheme="file" />
67 <data android:mimeType="video/mpeg4" />
68 <data android:mimeType="video/mp4" />
69 <data android:mimeType="video/3gp" />
70 <data android:mimeType="video/3gpp" />
71 <data android:mimeType="video/3gpp2" />
72 <data android:mimeType="video/webm" />
Chih-Chung Chang4c894782011-10-31 11:23:43 +080073 <data android:mimeType="video/avi" />
Owen Linf9a0a432011-08-17 22:07:43 +080074 <data android:mimeType="application/sdp" />
75 </intent-filter>
76 <intent-filter>
77 !-- HTTP live support -->
78 <action android:name="android.intent.action.VIEW" />
79 <category android:name="android.intent.category.DEFAULT" />
80 <category android:name="android.intent.category.BROWSABLE" />
81 <data android:scheme="http" />
Chih-Chung Chang360f1db2011-10-24 16:45:02 +080082 <data android:scheme="https" />
Owen Linf9a0a432011-08-17 22:07:43 +080083 <data android:mimeType="audio/x-mpegurl" />
84 <data android:mimeType="audio/mpegurl" />
85 <data android:mimeType="application/vnd.apple.mpegurl" />
86 <data android:mimeType="application/x-mpegurl" />
87 </intent-filter>
88 </activity>
Owen Lind6db8ea2011-08-18 21:48:19 +080089
John Reck93074e92013-04-19 10:04:12 -070090 <activity android:name="com.android.gallery3d.app.Gallery" android:label="@string/app_name"
91 android:configChanges="keyboardHidden|orientation|screenSize">
Owen Linf9a0a432011-08-17 22:07:43 +080092 <intent-filter>
93 <action android:name="android.intent.action.MAIN" />
Jeff Brown4b8b92d2011-11-28 17:23:56 -080094 <category android:name="android.intent.category.DEFAULT" />
Owen Linf9a0a432011-08-17 22:07:43 +080095 <category android:name="android.intent.category.LAUNCHER" />
Jeff Brown4b8b92d2011-11-28 17:23:56 -080096 <category android:name="android.intent.category.APP_GALLERY" />
Owen Linf9a0a432011-08-17 22:07:43 +080097 </intent-filter>
98 <intent-filter>
99 <action android:name="android.intent.action.GET_CONTENT" />
100 <category android:name="android.intent.category.OPENABLE" />
101 <data android:mimeType="vnd.android.cursor.dir/image" />
102 </intent-filter>
103 <intent-filter>
104 <action android:name="android.intent.action.GET_CONTENT" />
105 <category android:name="android.intent.category.OPENABLE" />
106 <category android:name="android.intent.category.DEFAULT" />
107 <data android:mimeType="image/*" />
108 <data android:mimeType="video/*" />
109 </intent-filter>
John Reckf6e687b2013-03-08 11:19:27 -0800110 <!-- We do NOT support the PICK intent, we add these intent-filter for
111 backward compatibility. Handle it as GET_CONTENT. -->
112 <intent-filter>
113 <action android:name="android.intent.action.PICK" />
114 <category android:name="android.intent.category.DEFAULT" />
115 <data android:mimeType="image/*" />
116 <data android:mimeType="video/*" />
117 </intent-filter>
118 <intent-filter>
119 <action android:name="android.intent.action.PICK" />
120 <category android:name="android.intent.category.DEFAULT" />
121 <data android:mimeType="vnd.android.cursor.dir/image" />
122 <data android:mimeType="vnd.android.cursor.dir/video" />
123 </intent-filter>
Owen Linf9a0a432011-08-17 22:07:43 +0800124 <intent-filter>
125 <action android:name="android.intent.action.VIEW" />
126 <category android:name="android.intent.category.DEFAULT" />
127 <data android:mimeType="vnd.android.cursor.dir/image" />
128 <data android:mimeType="vnd.android.cursor.dir/video" />
129 </intent-filter>
130 <intent-filter>
131 <action android:name="android.intent.action.VIEW" />
132 <action android:name="com.android.camera.action.REVIEW" />
133 <category android:name="android.intent.category.DEFAULT" />
134 <category android:name="android.intent.category.BROWSABLE" />
135 <data android:scheme="" />
136 <data android:scheme="http" />
137 <data android:scheme="https" />
138 <data android:scheme="content" />
139 <data android:scheme="file" />
140 <data android:mimeType="image/bmp" />
141 <data android:mimeType="image/jpeg" />
142 <data android:mimeType="image/gif" />
143 <data android:mimeType="image/png" />
Angus Kong9874da22013-01-16 15:52:32 -0800144 <data android:mimeType="image/webp" />
Owen Linf9a0a432011-08-17 22:07:43 +0800145 <data android:mimeType="image/x-ms-bmp" />
146 <data android:mimeType="image/vnd.wap.wbmp" />
Mangesh Ghiware07b70a52012-10-10 15:56:29 -0700147 <data android:mimeType="application/vnd.google.panorama360+jpg" />
Owen Linf9a0a432011-08-17 22:07:43 +0800148 </intent-filter>
149 <intent-filter>
150 <action android:name="com.android.camera.action.REVIEW" />
151 <category android:name="android.intent.category.DEFAULT" />
152 <category android:name="android.intent.category.BROWSABLE" />
153 <data android:scheme="http" />
154 <data android:scheme="https" />
155 <data android:scheme="content" />
156 <data android:scheme="file" />
157 <data android:mimeType="video/mpeg4" />
158 <data android:mimeType="video/mp4" />
159 <data android:mimeType="video/3gp" />
160 <data android:mimeType="video/3gpp" />
161 <data android:mimeType="video/3gpp2" />
162 <data android:mimeType="application/sdp" />
163 </intent-filter>
Owen Linf9a0a432011-08-17 22:07:43 +0800164 </activity>
165
John Reck93074e92013-04-19 10:04:12 -0700166 <!-- we add this activity-alias for shortcut backward compatibility -->
167 <!-- Note: The alias must put after the target activity -->
168 <activity-alias android:name="com.cooliris.media.Gallery"
169 android:targetActivity="com.android.gallery3d.app.Gallery"
John Reckd8732612013-02-27 16:48:16 -0800170 android:configChanges="keyboardHidden|orientation|screenSize"
John Reck93074e92013-04-19 10:04:12 -0700171 android:label="@string/app_name">
172 <intent-filter>
173 <action android:name="android.intent.action.MAIN" />
174 </intent-filter>
175 </activity-alias>
John Reckd8732612013-02-27 16:48:16 -0800176
Bobby Georgescud3aac522012-12-26 00:52:28 -0800177 <!-- This activity receives USB_DEVICE_ATTACHED intents and allows importing
178 media from attached MTP devices, like cameras and camera phones -->
179 <activity android:launchMode="singleInstance"
180 android:taskAffinity="" android:name="com.android.gallery3d.ingest.IngestActivity"
Bobby Georgescuc8a9e862013-02-01 12:57:14 -0800181 android:configChanges="orientation|screenSize"
Bobby Georgescud3aac522012-12-26 00:52:28 -0800182 android:label="@string/app_name">
Owen Linf9a0a432011-08-17 22:07:43 +0800183 <intent-filter>
184 <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
185 </intent-filter>
186 <meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
187 android:resource="@xml/device_filter" />
188 </activity>
Bobby Georgescud3aac522012-12-26 00:52:28 -0800189 <service android:name="com.android.gallery3d.ingest.IngestService" />
Owen Linf9a0a432011-08-17 22:07:43 +0800190
191 <activity android:name="com.android.gallery3d.app.Wallpaper"
192 android:configChanges="keyboardHidden|orientation|screenSize"
193 android:theme="@style/android:Theme.Translucent.NoTitleBar">
194 <intent-filter android:label="@string/camera_setas_wallpaper">
195 <action android:name="android.intent.action.ATTACH_DATA" />
196 <data android:mimeType="image/*" />
197 <category android:name="android.intent.category.DEFAULT" />
198 </intent-filter>
199 <intent-filter android:label="@string/app_name">
200 <action android:name="android.intent.action.SET_WALLPAPER" />
201 <category android:name="android.intent.category.DEFAULT" />
202 </intent-filter>
203 <meta-data android:name="android.wallpaper.preview"
204 android:resource="@xml/wallpaper_picker_preview" />
205 </activity>
Teng-Hui Zhu3f1f1ba2012-08-24 14:50:37 -0700206 <activity android:name="com.android.gallery3d.app.TrimVideo"
207 android:label="@string/trim_label">
208 </activity>
nicolasroardf37e1e92012-09-27 12:20:11 -0700209
nicolasroard0ee91a22012-10-01 00:25:11 -0700210 <permission android:name="com.android.gallery3d.filtershow.permission.READ"
211 android:protectionLevel="signature" />
212
213 <permission android:name="com.android.gallery3d.filtershow.permission.WRITE"
214 android:protectionLevel="signature" />
215
216 <provider
217 android:name="com.android.gallery3d.filtershow.provider.SharedImageProvider"
218 android:authorities="com.android.gallery3d.filtershow.provider.SharedImageProvider"
219 android:grantUriPermissions="true"
220 android:readPermission="com.android.gallery3d.filtershow.permission.READ"
221 android:writePermission="com.android.gallery3d.filtershow.permission.WRITE" />
nicolasroardf37e1e92012-09-27 12:20:11 -0700222 <activity
223 android:name="com.android.gallery3d.filtershow.FilterShowActivity"
224 android:label="@string/title_activity_filter_show"
nicolasroard9cd73082012-11-28 19:11:42 -0800225 android:theme="@style/Theme.FilterShow"
nicolasroard60d25272012-10-18 16:16:36 -0700226 android:configChanges="keyboardHidden|orientation|screenSize">
nicolasroardf37e1e92012-09-27 12:20:11 -0700227 <intent-filter>
228 <action android:name="android.intent.action.EDIT" />
229 <category android:name="android.intent.category.DEFAULT" />
230 <data android:mimeType="image/*" />
231 </intent-filter>
232 <intent-filter>
233 <action android:name="action_nextgen_edit" />
234 <category android:name="android.intent.category.DEFAULT" />
235 <data android:mimeType="image/*" />
236 </intent-filter>
Ruben Brunk6fe165b2013-04-04 17:20:42 -0700237 </activity>
238
239 <activity
240 android:name="com.android.gallery3d.filtershow.crop.CropActivity"
241 android:label="@string/crop"
242 android:theme="@style/Theme.FilterShow"
243 android:configChanges="keyboardHidden|orientation|screenSize">
244 <intent-filter android:label="@string/crop_label">
Ruben Brunk795776f2012-12-05 22:07:12 -0800245 <action android:name="com.android.camera.action.CROP" />
Ruben Brunk5aa454b2012-10-25 15:53:42 -0700246 <data android:scheme="http" />
247 <data android:scheme="https" />
248 <data android:scheme="content" />
249 <data android:scheme="file" />
250 <data android:scheme="" />
Ruben Brunk63926d22012-10-17 00:40:35 -0700251 <data android:mimeType="image/*" />
252 <category android:name="android.intent.category.DEFAULT" />
253 <category android:name="android.intent.category.ALTERNATIVE" />
254 <category android:name="android.intent.category.SELECTED_ALTERNATIVE" />
255 </intent-filter>
nicolasroardf37e1e92012-09-27 12:20:11 -0700256 </activity>
257
Ruei-sung Lind37ff2e2011-09-19 14:33:17 +0800258 <uses-library android:name="com.google.android.media.effects"
259 android:required="false" />
Owen Linf9a0a432011-08-17 22:07:43 +0800260
Owen Linf9a0a432011-08-17 22:07:43 +0800261 <activity android:name="com.android.gallery3d.settings.GallerySettings"
Ahbong Changab15e832012-08-21 14:06:51 +0800262 android:theme="@style/Theme.Gallery"
Owen Linf9a0a432011-08-17 22:07:43 +0800263 android:configChanges="orientation|keyboardHidden|screenSize" />
264
265 <provider android:name="com.android.gallery3d.provider.GalleryProvider"
266 android:syncable="false"
267 android:grantUriPermissions="true"
Nick Kraleviche8e80ba2012-08-03 15:50:39 -0700268 android:exported="true"
Owen Linca181a62012-10-16 10:22:54 +0800269 android:permission="com.android.gallery3d.permission.GALLERY_PROVIDER"
Owen Linf9a0a432011-08-17 22:07:43 +0800270 android:authorities="com.android.gallery3d.provider" />
George Mountc8419b42013-02-20 17:01:54 -0800271 <provider
272 android:name="com.android.photos.data.PhotoProvider"
273 android:authorities="com.android.gallery3d.photoprovider"
274 android:syncable="false"
275 android:exported="false"/>
Owen Lind6db8ea2011-08-18 21:48:19 +0800276 <activity android:name="com.android.gallery3d.gadget.WidgetClickHandler" />
Owen Linf9a0a432011-08-17 22:07:43 +0800277 <activity android:name="com.android.gallery3d.app.DialogPicker"
278 android:configChanges="keyboardHidden|orientation|screenSize"
279 android:theme="@style/DialogPickerTheme"/>
280 <activity android:name="com.android.gallery3d.app.AlbumPicker"
281 android:configChanges="keyboardHidden|orientation|screenSize"
282 android:theme="@style/DialogPickerTheme"/>
Owen Lind6db8ea2011-08-18 21:48:19 +0800283 <activity android:name="com.android.gallery3d.gadget.WidgetTypeChooser"
Owen Linf9a0a432011-08-17 22:07:43 +0800284 android:configChanges="keyboardHidden|orientation|screenSize"
Ahbong Changab15e832012-08-21 14:06:51 +0800285 android:theme="@style/Theme.Gallery.Dialog"/>
Owen Linf9a0a432011-08-17 22:07:43 +0800286
Michael Kolba1f42582012-09-10 15:14:56 -0700287 <activity android:name="com.android.camera.CameraActivity"
Michael Kolb617040c2012-09-16 17:16:25 -0700288 android:taskAffinity="com.android.camera.CameraActivity"
Michael Kolba1f42582012-09-10 15:14:56 -0700289 android:label="@string/camera_label"
290 android:theme="@style/Theme.Camera"
Mangesh Ghiwarec6ece8c2012-09-14 12:40:03 -0700291 android:icon="@mipmap/ic_launcher_camera"
Michael Kolba1f42582012-09-10 15:14:56 -0700292 android:configChanges="orientation|screenSize|keyboardHidden"
293 android:clearTaskOnLaunch="true"
294 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
295 <intent-filter>
Mangesh Ghiwarefd992492012-09-14 12:17:54 -0700296 <action android:name="android.media.action.IMAGE_CAPTURE" />
297 <category android:name="android.intent.category.DEFAULT" />
298 </intent-filter>
299 <intent-filter>
Mangesh Ghiware0454dde2012-09-14 00:10:41 -0700300 <action android:name="android.media.action.STILL_IMAGE_CAMERA" />
301 <category android:name="android.intent.category.DEFAULT" />
302 </intent-filter>
Wu-cheng Li471d8982012-10-31 11:12:05 +0800303 <meta-data android:name="com.android.keyguard.layout"
304 android:resource="@layout/keyguard_widget" />
Mangesh Ghiware0454dde2012-09-14 00:10:41 -0700305 </activity>
306
Wu-cheng Li2e346282012-09-17 17:32:59 +0800307 <activity android:name="com.android.camera.SecureCameraActivity"
308 android:taskAffinity="com.android.camera.SecureCameraActivity"
309 android:excludeFromRecents="true"
310 android:label="@string/camera_label"
311 android:theme="@style/Theme.Camera"
312 android:icon="@mipmap/ic_launcher_camera"
313 android:configChanges="orientation|screenSize|keyboardHidden"
314 android:clearTaskOnLaunch="true"
315 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
316 <intent-filter>
317 <action android:name="android.media.action.STILL_IMAGE_CAMERA_SECURE" />
318 <category android:name="android.intent.category.DEFAULT" />
319 </intent-filter>
Wu-cheng Li5eff2242012-09-25 11:20:27 +0800320 <intent-filter>
321 <action android:name="android.media.action.IMAGE_CAPTURE_SECURE" />
322 <category android:name="android.intent.category.DEFAULT" />
323 </intent-filter>
Wu-cheng Li471d8982012-10-31 11:12:05 +0800324 <meta-data android:name="com.android.keyguard.layout"
325 android:resource="@layout/keyguard_widget" />
Wu-cheng Li2e346282012-09-17 17:32:59 +0800326 </activity>
327
Mangesh Ghiware0454dde2012-09-14 00:10:41 -0700328 <activity-alias android:icon="@mipmap/ic_launcher_camera"
329 android:label="@string/camera_label"
330 android:name="com.android.camera.CameraLauncher"
331 android:targetActivity="com.android.camera.CameraActivity" >
332 <intent-filter>
Michael Kolba1f42582012-09-10 15:14:56 -0700333 <action android:name="android.intent.action.MAIN" />
334 <category android:name="android.intent.category.DEFAULT" />
335 <category android:name="android.intent.category.LAUNCHER" />
336 </intent-filter>
Mangesh Ghiware0454dde2012-09-14 00:10:41 -0700337 </activity-alias>
Michael Kolba1f42582012-09-10 15:14:56 -0700338
Chris Craik09473aa2012-10-11 14:06:45 -0700339 <activity-alias android:icon="@mipmap/ic_launcher_camera"
340 android:label="@string/camera_label"
341 android:name="com.android.camera.Camera"
342 android:targetActivity="com.android.camera.CameraActivity" >
343 <intent-filter>
344 <action android:name="android.intent.action.MAIN" />
345 <category android:name="android.intent.category.DEFAULT" />
346 </intent-filter>
347 </activity-alias>
348
Mangesh Ghiware2bb9b8c2012-10-22 15:47:22 -0700349 <activity-alias android:icon="@mipmap/ic_launcher_video_camera"
350 android:label="@string/video_camera_label"
351 android:name="com.android.camera.VideoCamera"
352 android:targetActivity="com.android.camera.CameraActivity" >
353 <intent-filter>
354 <action android:name="android.media.action.VIDEO_CAMERA" />
355 <category android:name="android.intent.category.DEFAULT" />
356 </intent-filter>
357 <intent-filter>
358 <action android:name="android.media.action.VIDEO_CAPTURE" />
359 <category android:name="android.intent.category.DEFAULT" />
360 </intent-filter>
361 </activity-alias>
362
Owen Lind6db8ea2011-08-18 21:48:19 +0800363 <receiver android:name="com.android.gallery3d.gadget.PhotoAppWidgetProvider"
Owen Linf9a0a432011-08-17 22:07:43 +0800364 android:label="@string/appwidget_title">
365 <intent-filter>
366 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
367 </intent-filter>
368 <meta-data android:name="android.appwidget.provider"
369 android:resource="@xml/widget_info" />
370 </receiver>
371 <receiver android:name="com.android.gallery3d.app.PackagesMonitor">
372 <intent-filter>
373 <action android:name="android.intent.action.PACKAGE_ADDED"/>
374 <action android:name="android.intent.action.PACKAGE_REMOVED"/>
Chih-Chung Changd0915382011-11-30 14:32:35 +0800375 <action android:name="android.intent.action.PACKAGE_CHANGED"/>
Owen Linf9a0a432011-08-17 22:07:43 +0800376 <data android:scheme="package"/>
377 </intent-filter>
378 </receiver>
Hung-ying Tyana56270e2012-06-27 18:25:47 +0800379 <service android:name="com.android.gallery3d.app.PackagesMonitor$AsyncService"/>
Chih-Chung Chang63764782012-03-08 20:10:53 +0800380 <receiver android:name="com.android.camera.CameraButtonIntentReceiver">
381 <intent-filter>
382 <action android:name="android.intent.action.CAMERA_BUTTON"/>
383 </intent-filter>
384 </receiver>
Chih-Chung Changa27fc9e2012-03-12 16:04:59 +0800385 <receiver android:name="com.android.camera.DisableCameraReceiver">
386 <intent-filter>
387 <action android:name="android.intent.action.BOOT_COMPLETED" />
388 </intent-filter>
389 </receiver>
Owen Lind6db8ea2011-08-18 21:48:19 +0800390 <service android:name="com.android.gallery3d.gadget.WidgetService"
Owen Linf9a0a432011-08-17 22:07:43 +0800391 android:permission="android.permission.BIND_REMOTEVIEWS"/>
Owen Lind6db8ea2011-08-18 21:48:19 +0800392 <activity android:name="com.android.gallery3d.gadget.WidgetConfigure"
Owen Linf9a0a432011-08-17 22:07:43 +0800393 android:configChanges="keyboardHidden|orientation|screenSize"
394 android:theme="@style/android:Theme.Translucent.NoTitleBar">
395 <intent-filter>
396 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
397 </intent-filter>
398 </activity>
John Reckf85d9742012-10-24 11:11:51 -0700399 <activity android:name="com.android.camera.ProxyLauncher"
Your Named10468b2012-12-03 14:14:19 -0800400 android:theme="@style/Theme.ProxyLauncher">
John Reckf85d9742012-10-24 11:11:51 -0700401 </activity>
Bobby Georgescua2d0d342012-12-03 13:56:00 -0800402 <service android:name="com.android.gallery3d.app.BatchService" />
Angus Kongc0993982013-01-29 17:43:48 -0800403 <service android:name="com.android.camera.MediaSaveService" />
Owen Linf9a0a432011-08-17 22:07:43 +0800404 </application>
405</manifest>