blob: b96042fa2677dc508375954dc6f31eea1371781e [file] [log] [blame]
Owen Linf9a0a432011-08-17 22:07:43 +08001<?xml version="1.0" encoding="utf-8"?>
2
Wu-cheng Li0eaafe82012-10-09 19:46:53 +08003<manifest android:versionCode="40001"
4 android:versionName="1.1.40001"
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
Wu-cheng Li788d0392012-08-08 17:19:51 +080010 <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="16" />
Chih-Chung Chang63764782012-03-08 20:10:53 +080011
Owen Linf9a0a432011-08-17 22:07:43 +080012 <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 Chang63764782012-03-08 20:10:53 +080015 <uses-permission android:name="android.permission.CAMERA" />
Owen Linf9a0a432011-08-17 22:07:43 +080016 <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 Coenen33ef0372012-03-26 18:25:50 -070019 <uses-permission android:name="android.permission.NFC" />
Chih-Chung Chang63764782012-03-08 20:10:53 +080020 <uses-permission android:name="android.permission.READ_SMS" />
Owen Linf9a0a432011-08-17 22:07:43 +080021 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Chih-Chung Changa27fc9e2012-03-12 16:04:59 +080022 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Chih-Chung Chang63764782012-03-08 20:10:53 +080023 <uses-permission android:name="android.permission.RECORD_AUDIO" />
Owen Linf9a0a432011-08-17 22:07:43 +080024 <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 Linf9a0a432011-08-17 22:07:43 +080029 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Chih-Chung Chang63764782012-03-08 20:10:53 +080030 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
Owen Linf9a0a432011-08-17 22:07:43 +080031
32 <supports-screens android:smallScreens="false"
33 android:normalScreens="true" android:largeScreens="true"
34 android:anyDensity="true" />
35
36 <application android:icon="@mipmap/ic_launcher_gallery" android:label="@string/app_name"
37 android:name="com.android.gallery3d.app.GalleryAppImpl"
Chih-Chung Chang63764782012-03-08 20:10:53 +080038 android:theme="@style/Theme.Gallery"
Wu-cheng Li680ab6c2012-04-30 17:43:01 +080039 android:logo="@mipmap/ic_launcher_gallery"
nicolasroardf37e1e92012-09-27 12:20:11 -070040 android:hardwareAccelerated="true"
41 android:largeHeap="true">
Chih-Chung Chang63764782012-03-08 20:10:53 +080042 <uses-library android:name="com.google.android.media.effects" android:required="false" />
Owen Linf9a0a432011-08-17 22:07:43 +080043 <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 Chang4c894782011-10-31 11:23:43 +080066 <data android:mimeType="video/avi" />
Owen Linf9a0a432011-08-17 22:07:43 +080067 <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 Chang360f1db2011-10-24 16:45:02 +080075 <data android:scheme="https" />
Owen Linf9a0a432011-08-17 22:07:43 +080076 <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 Lind6db8ea2011-08-18 21:48:19 +080082
Owen Linf9a0a432011-08-17 22:07:43 +080083 <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 Brown4b8b92d2011-11-28 17:23:56 -080087 <category android:name="android.intent.category.DEFAULT" />
Owen Linf9a0a432011-08-17 22:07:43 +080088 <category android:name="android.intent.category.LAUNCHER" />
Jeff Brown4b8b92d2011-11-28 17:23:56 -080089 <category android:name="android.intent.category.APP_GALLERY" />
Owen Linf9a0a432011-08-17 22:07:43 +080090 </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 Lin2733d792011-09-01 14:11:19 +0800157 <!-- 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 Chang4c894782011-10-31 11:23:43 +0800162 android:label="@string/app_name">
Owen Lin2733d792011-09-01 14:11:19 +0800163 <intent-filter>
164 <action android:name="android.intent.action.MAIN" />
165 </intent-filter>
166 </activity-alias>
167
Owen Linf9a0a432011-08-17 22:07:43 +0800168 <!-- 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 Chang338d0292011-09-29 13:34:18 +0800196 android:label="@string/crop_label"
197 android:process=":crop">
Owen Linf9a0a432011-08-17 22:07:43 +0800198 <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>
Teng-Hui Zhu3f1f1ba2012-08-24 14:50:37 -0700211 <activity android:name="com.android.gallery3d.app.TrimVideo"
212 android:label="@string/trim_label">
213 </activity>
Yuli Huang6a12ad72011-09-12 22:25:30 +0800214 <activity android:name="com.android.gallery3d.photoeditor.PhotoEditor"
Chih-Chung Chang90fff682012-05-31 13:34:15 -0700215 android:label="@string/app_name"
Yuli Huang6a12ad72011-09-12 22:25:30 +0800216 android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen"
217 android:configChanges="keyboardHidden|orientation|screenSize"
Yuli Huang5e1b1152012-05-07 18:13:29 +0800218 android:hardwareAccelerated="true"
Yuli Huang778ec352012-08-06 17:55:30 +0800219 android:process=":edit"
220 android:enabled="false">
Yuli Huang6a12ad72011-09-12 22:25:30 +0800221 <intent-filter>
222 <action android:name="android.intent.action.EDIT" />
223 <data android:mimeType="image/*" />
224 <category android:name="android.intent.category.DEFAULT" />
225 </intent-filter>
226 </activity>
nicolasroardf37e1e92012-09-27 12:20:11 -0700227
nicolasroard0ee91a22012-10-01 00:25:11 -0700228 <permission android:name="com.android.gallery3d.filtershow.permission.READ"
229 android:protectionLevel="signature" />
230
231 <permission android:name="com.android.gallery3d.filtershow.permission.WRITE"
232 android:protectionLevel="signature" />
233
234 <provider
235 android:name="com.android.gallery3d.filtershow.provider.SharedImageProvider"
236 android:authorities="com.android.gallery3d.filtershow.provider.SharedImageProvider"
237 android:grantUriPermissions="true"
238 android:readPermission="com.android.gallery3d.filtershow.permission.READ"
239 android:writePermission="com.android.gallery3d.filtershow.permission.WRITE" />
nicolasroardf37e1e92012-09-27 12:20:11 -0700240 <activity
241 android:name="com.android.gallery3d.filtershow.FilterShowActivity"
242 android:label="@string/title_activity_filter_show"
Bobby Georgescufea98f52012-10-10 15:57:17 -0700243 android:theme="@style/Theme.Gallery"
nicolasroardab7596d2012-10-08 15:00:39 -0700244 android:screenOrientation="portrait">
nicolasroardf37e1e92012-09-27 12:20:11 -0700245 <intent-filter>
246 <action android:name="android.intent.action.EDIT" />
247 <category android:name="android.intent.category.DEFAULT" />
248 <data android:mimeType="image/*" />
249 </intent-filter>
250 <intent-filter>
251 <action android:name="action_nextgen_edit" />
252 <category android:name="android.intent.category.DEFAULT" />
253 <data android:mimeType="image/*" />
254 </intent-filter>
255 </activity>
256
Ruei-sung Lind37ff2e2011-09-19 14:33:17 +0800257 <uses-library android:name="com.google.android.media.effects"
258 android:required="false" />
Owen Linf9a0a432011-08-17 22:07:43 +0800259
260 <activity android:name="com.android.gallery3d.app.SlideshowDream"
Ruei-sung Lind37ff2e2011-09-19 14:33:17 +0800261 android:label="@string/slideshow_dream_name"
262 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
263 android:hardwareAccelerated="true">
Owen Linf9a0a432011-08-17 22:07:43 +0800264 <intent-filter>
265 <action android:name="android.intent.action.MAIN" />
266 <category android:name="android.intent.category.DEFAULT" />
267 <category android:name="android.intent.category.DREAM" />
268 </intent-filter>
269 </activity>
270
271 <activity android:name="com.android.gallery3d.settings.GallerySettings"
Ahbong Changab15e832012-08-21 14:06:51 +0800272 android:theme="@style/Theme.Gallery"
Owen Linf9a0a432011-08-17 22:07:43 +0800273 android:configChanges="orientation|keyboardHidden|screenSize" />
274
275 <provider android:name="com.android.gallery3d.provider.GalleryProvider"
276 android:syncable="false"
277 android:grantUriPermissions="true"
Nick Kraleviche8e80ba2012-08-03 15:50:39 -0700278 android:exported="true"
Owen Linf9a0a432011-08-17 22:07:43 +0800279 android:authorities="com.android.gallery3d.provider" />
Owen Lind6db8ea2011-08-18 21:48:19 +0800280 <activity android:name="com.android.gallery3d.gadget.WidgetClickHandler" />
Owen Linf9a0a432011-08-17 22:07:43 +0800281 <activity android:name="com.android.gallery3d.app.DialogPicker"
282 android:configChanges="keyboardHidden|orientation|screenSize"
283 android:theme="@style/DialogPickerTheme"/>
284 <activity android:name="com.android.gallery3d.app.AlbumPicker"
285 android:configChanges="keyboardHidden|orientation|screenSize"
286 android:theme="@style/DialogPickerTheme"/>
Owen Lind6db8ea2011-08-18 21:48:19 +0800287 <activity android:name="com.android.gallery3d.gadget.WidgetTypeChooser"
Owen Linf9a0a432011-08-17 22:07:43 +0800288 android:configChanges="keyboardHidden|orientation|screenSize"
Ahbong Changab15e832012-08-21 14:06:51 +0800289 android:theme="@style/Theme.Gallery.Dialog"/>
Owen Linf9a0a432011-08-17 22:07:43 +0800290
Michael Kolba1f42582012-09-10 15:14:56 -0700291 <activity android:name="com.android.camera.CameraActivity"
Michael Kolb617040c2012-09-16 17:16:25 -0700292 android:taskAffinity="com.android.camera.CameraActivity"
Michael Kolba1f42582012-09-10 15:14:56 -0700293 android:label="@string/camera_label"
294 android:theme="@style/Theme.Camera"
Mangesh Ghiwarec6ece8c2012-09-14 12:40:03 -0700295 android:icon="@mipmap/ic_launcher_camera"
Michael Kolba1f42582012-09-10 15:14:56 -0700296 android:configChanges="orientation|screenSize|keyboardHidden"
297 android:clearTaskOnLaunch="true"
298 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
299 <intent-filter>
Mangesh Ghiwarefd992492012-09-14 12:17:54 -0700300 <action android:name="android.media.action.IMAGE_CAPTURE" />
301 <category android:name="android.intent.category.DEFAULT" />
302 </intent-filter>
303 <intent-filter>
Mangesh Ghiware0454dde2012-09-14 00:10:41 -0700304 <action android:name="android.media.action.STILL_IMAGE_CAMERA" />
305 <category android:name="android.intent.category.DEFAULT" />
306 </intent-filter>
307 <intent-filter>
Mangesh Ghiware0454dde2012-09-14 00:10:41 -0700308 <action android:name="android.media.action.VIDEO_CAMERA" />
309 <category android:name="android.intent.category.DEFAULT" />
310 </intent-filter>
Doris Liu1a875b22012-09-14 18:43:41 -0700311 <intent-filter>
312 <action android:name="android.media.action.VIDEO_CAPTURE" />
313 <category android:name="android.intent.category.DEFAULT" />
314 </intent-filter>
Mangesh Ghiware0454dde2012-09-14 00:10:41 -0700315 </activity>
316
Wu-cheng Li2e346282012-09-17 17:32:59 +0800317 <activity android:name="com.android.camera.SecureCameraActivity"
318 android:taskAffinity="com.android.camera.SecureCameraActivity"
319 android:excludeFromRecents="true"
320 android:label="@string/camera_label"
321 android:theme="@style/Theme.Camera"
322 android:icon="@mipmap/ic_launcher_camera"
323 android:configChanges="orientation|screenSize|keyboardHidden"
324 android:clearTaskOnLaunch="true"
325 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
326 <intent-filter>
327 <action android:name="android.media.action.STILL_IMAGE_CAMERA_SECURE" />
328 <category android:name="android.intent.category.DEFAULT" />
329 </intent-filter>
Wu-cheng Li5eff2242012-09-25 11:20:27 +0800330 <intent-filter>
331 <action android:name="android.media.action.IMAGE_CAPTURE_SECURE" />
332 <category android:name="android.intent.category.DEFAULT" />
333 </intent-filter>
Wu-cheng Li2e346282012-09-17 17:32:59 +0800334 </activity>
335
Mangesh Ghiware0454dde2012-09-14 00:10:41 -0700336 <activity-alias android:icon="@mipmap/ic_launcher_camera"
337 android:label="@string/camera_label"
338 android:name="com.android.camera.CameraLauncher"
339 android:targetActivity="com.android.camera.CameraActivity" >
340 <intent-filter>
Michael Kolba1f42582012-09-10 15:14:56 -0700341 <action android:name="android.intent.action.MAIN" />
342 <category android:name="android.intent.category.DEFAULT" />
343 <category android:name="android.intent.category.LAUNCHER" />
344 </intent-filter>
Mangesh Ghiware0454dde2012-09-14 00:10:41 -0700345 </activity-alias>
Michael Kolba1f42582012-09-10 15:14:56 -0700346
Chris Craik09473aa2012-10-11 14:06:45 -0700347 <activity-alias android:icon="@mipmap/ic_launcher_camera"
348 android:label="@string/camera_label"
349 android:name="com.android.camera.Camera"
350 android:targetActivity="com.android.camera.CameraActivity" >
351 <intent-filter>
352 <action android:name="android.intent.action.MAIN" />
353 <category android:name="android.intent.category.DEFAULT" />
354 </intent-filter>
355 </activity-alias>
356
Chih-Chung Chang63764782012-03-08 20:10:53 +0800357 <activity android:name="com.android.camera.VideoCamera"
Chih-Chung Chang2250dfb2012-03-13 12:28:02 +0800358 android:taskAffinity="com.android.camera"
Chih-Chung Chang63764782012-03-08 20:10:53 +0800359 android:label="@string/video_camera_label"
Wu-cheng Liceb25e92012-08-14 16:21:00 +0800360 android:theme="@style/Theme.Camera"
Chih-Chung Chang63764782012-03-08 20:10:53 +0800361 android:configChanges="orientation|screenSize|keyboardHidden"
362 android:icon="@mipmap/ic_launcher_video_camera"
363 android:clearTaskOnLaunch="true"
Chih-Chung Chang63764782012-03-08 20:10:53 +0800364 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
Chih-Chung Chang63764782012-03-08 20:10:53 +0800365 </activity>
Pin Tingfb46bf82012-03-15 14:46:53 +0800366 <activity android:name="com.android.camera.PanoramaActivity"
Chih-Chung Chang2250dfb2012-03-13 12:28:02 +0800367 android:taskAffinity="com.android.camera"
Chih-Chung Chang63764782012-03-08 20:10:53 +0800368 android:label="@string/pano_dialog_title"
Wu-cheng Liceb25e92012-08-14 16:21:00 +0800369 android:theme="@style/Theme.Camera"
Chih-Chung Chang63764782012-03-08 20:10:53 +0800370 android:configChanges="orientation|screenSize|keyboardHidden"
371 android:clearTaskOnLaunch="true"
Wu-cheng Li5320ee42012-03-19 15:42:27 +0800372 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
Chih-Chung Chang63764782012-03-08 20:10:53 +0800373 </activity>
Owen Lind6db8ea2011-08-18 21:48:19 +0800374 <receiver android:name="com.android.gallery3d.gadget.PhotoAppWidgetProvider"
Owen Linf9a0a432011-08-17 22:07:43 +0800375 android:label="@string/appwidget_title">
376 <intent-filter>
377 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
378 </intent-filter>
379 <meta-data android:name="android.appwidget.provider"
380 android:resource="@xml/widget_info" />
381 </receiver>
382 <receiver android:name="com.android.gallery3d.app.PackagesMonitor">
383 <intent-filter>
384 <action android:name="android.intent.action.PACKAGE_ADDED"/>
385 <action android:name="android.intent.action.PACKAGE_REMOVED"/>
Chih-Chung Changd0915382011-11-30 14:32:35 +0800386 <action android:name="android.intent.action.PACKAGE_CHANGED"/>
Owen Linf9a0a432011-08-17 22:07:43 +0800387 <data android:scheme="package"/>
388 </intent-filter>
389 </receiver>
Hung-ying Tyana56270e2012-06-27 18:25:47 +0800390 <service android:name="com.android.gallery3d.app.PackagesMonitor$AsyncService"/>
Chih-Chung Chang63764782012-03-08 20:10:53 +0800391 <receiver android:name="com.android.camera.CameraButtonIntentReceiver">
392 <intent-filter>
393 <action android:name="android.intent.action.CAMERA_BUTTON"/>
394 </intent-filter>
395 </receiver>
Chih-Chung Changa27fc9e2012-03-12 16:04:59 +0800396 <receiver android:name="com.android.camera.DisableCameraReceiver">
397 <intent-filter>
398 <action android:name="android.intent.action.BOOT_COMPLETED" />
399 </intent-filter>
400 </receiver>
Owen Lind6db8ea2011-08-18 21:48:19 +0800401 <service android:name="com.android.gallery3d.gadget.WidgetService"
Owen Linf9a0a432011-08-17 22:07:43 +0800402 android:permission="android.permission.BIND_REMOTEVIEWS"/>
Owen Lind6db8ea2011-08-18 21:48:19 +0800403 <activity android:name="com.android.gallery3d.gadget.WidgetConfigure"
Owen Linf9a0a432011-08-17 22:07:43 +0800404 android:configChanges="keyboardHidden|orientation|screenSize"
405 android:theme="@style/android:Theme.Translucent.NoTitleBar">
406 <intent-filter>
407 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
408 </intent-filter>
409 </activity>
Owen Linf9a0a432011-08-17 22:07:43 +0800410 </application>
411</manifest>