blob: 9c857b6a3db93aca6123a421d77096ba34a9b965 [file] [log] [blame]
Owen Linb540ef12011-08-17 22:07:43 +08001<?xml version="1.0" encoding="utf-8"?>
2
Chih-Chung Chang00739432012-03-08 20:10:53 +08003<manifest android:versionCode="40000"
4 android:versionName="1.1.40000"
Owen Linb540ef12011-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 Lib69655f2012-08-08 17:19:51 +080010 <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="16" />
Chih-Chung Chang00739432012-03-08 20:10:53 +080011
Owen Linb540ef12011-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 Chang00739432012-03-08 20:10:53 +080015 <uses-permission android:name="android.permission.CAMERA" />
Owen Linb540ef12011-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 Coenena453f332012-03-26 18:25:50 -070019 <uses-permission android:name="android.permission.NFC" />
Chih-Chung Chang00739432012-03-08 20:10:53 +080020 <uses-permission android:name="android.permission.READ_SMS" />
Owen Linb540ef12011-08-17 22:07:43 +080021 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Chih-Chung Chang4f19a072012-03-12 16:04:59 +080022 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Chih-Chung Chang00739432012-03-08 20:10:53 +080023 <uses-permission android:name="android.permission.RECORD_AUDIO" />
Owen Linb540ef12011-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 Linb540ef12011-08-17 22:07:43 +080029 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Chih-Chung Chang00739432012-03-08 20:10:53 +080030 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
Owen Linb540ef12011-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 Chang00739432012-03-08 20:10:53 +080038 android:theme="@style/Theme.Gallery"
Wu-cheng Lie9faef72012-04-30 17:43:01 +080039 android:logo="@mipmap/ic_launcher_gallery"
nicolasroardb4f11612012-09-27 12:20:11 -070040 android:hardwareAccelerated="true"
41 android:largeHeap="true">
Chih-Chung Chang00739432012-03-08 20:10:53 +080042 <uses-library android:name="com.google.android.media.effects" android:required="false" />
Owen Linb540ef12011-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 Chang62485ff2011-10-31 11:23:43 +080066 <data android:mimeType="video/avi" />
Owen Linb540ef12011-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 Chang59c91f02011-10-24 16:45:02 +080075 <data android:scheme="https" />
Owen Linb540ef12011-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 Lin78768052011-08-18 21:48:19 +080082
Owen Linb540ef12011-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 Brown1c30c012011-11-28 17:23:56 -080087 <category android:name="android.intent.category.DEFAULT" />
Owen Linb540ef12011-08-17 22:07:43 +080088 <category android:name="android.intent.category.LAUNCHER" />
Jeff Brown1c30c012011-11-28 17:23:56 -080089 <category android:name="android.intent.category.APP_GALLERY" />
Owen Linb540ef12011-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 Lin4d888ed2011-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 Chang62485ff2011-10-31 11:23:43 +0800162 android:label="@string/app_name">
Owen Lin4d888ed2011-09-01 14:11:19 +0800163 <intent-filter>
164 <action android:name="android.intent.action.MAIN" />
165 </intent-filter>
166 </activity-alias>
167
Owen Linb540ef12011-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 Chang7f837852011-09-29 13:34:18 +0800196 android:label="@string/crop_label"
197 android:process=":crop">
Owen Linb540ef12011-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 Zhue7d37f52012-08-24 14:50:37 -0700211 <activity android:name="com.android.gallery3d.app.TrimVideo"
212 android:label="@string/trim_label">
213 </activity>
Yuli Huang00e51f92011-09-12 22:25:30 +0800214 <activity android:name="com.android.gallery3d.photoeditor.PhotoEditor"
Chih-Chung Changb123d222012-05-31 13:34:15 -0700215 android:label="@string/app_name"
Yuli Huang00e51f92011-09-12 22:25:30 +0800216 android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen"
217 android:configChanges="keyboardHidden|orientation|screenSize"
Yuli Huangce2b3e02012-05-07 18:13:29 +0800218 android:hardwareAccelerated="true"
Yuli Huangb0102e92012-08-06 17:55:30 +0800219 android:process=":edit"
220 android:enabled="false">
Yuli Huang00e51f92011-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>
nicolasroardb4f11612012-09-27 12:20:11 -0700227
228 <activity
229 android:name="com.android.gallery3d.filtershow.FilterShowActivity"
230 android:label="@string/title_activity_filter_show"
231 android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" >
232 <intent-filter>
233 <action android:name="android.intent.action.EDIT" />
234 <category android:name="android.intent.category.DEFAULT" />
235 <data android:mimeType="image/*" />
236 </intent-filter>
237 <intent-filter>
238 <action android:name="action_nextgen_edit" />
239 <category android:name="android.intent.category.DEFAULT" />
240 <data android:mimeType="image/*" />
241 </intent-filter>
242 </activity>
243
Ruei-sung Lin103febb2011-09-19 14:33:17 +0800244 <uses-library android:name="com.google.android.media.effects"
245 android:required="false" />
Owen Linb540ef12011-08-17 22:07:43 +0800246
247 <activity android:name="com.android.gallery3d.app.SlideshowDream"
Ruei-sung Lin103febb2011-09-19 14:33:17 +0800248 android:label="@string/slideshow_dream_name"
249 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
250 android:hardwareAccelerated="true">
Owen Linb540ef12011-08-17 22:07:43 +0800251 <intent-filter>
252 <action android:name="android.intent.action.MAIN" />
253 <category android:name="android.intent.category.DEFAULT" />
254 <category android:name="android.intent.category.DREAM" />
255 </intent-filter>
256 </activity>
257
258 <activity android:name="com.android.gallery3d.settings.GallerySettings"
Ahbong Chang5fc3e592012-08-21 14:06:51 +0800259 android:theme="@style/Theme.Gallery"
Owen Linb540ef12011-08-17 22:07:43 +0800260 android:configChanges="orientation|keyboardHidden|screenSize" />
261
262 <provider android:name="com.android.gallery3d.provider.GalleryProvider"
263 android:syncable="false"
264 android:grantUriPermissions="true"
Nick Kralevich3624abe2012-08-03 15:50:39 -0700265 android:exported="true"
Owen Linb540ef12011-08-17 22:07:43 +0800266 android:authorities="com.android.gallery3d.provider" />
Owen Lin78768052011-08-18 21:48:19 +0800267 <activity android:name="com.android.gallery3d.gadget.WidgetClickHandler" />
Owen Linb540ef12011-08-17 22:07:43 +0800268 <activity android:name="com.android.gallery3d.app.DialogPicker"
269 android:configChanges="keyboardHidden|orientation|screenSize"
270 android:theme="@style/DialogPickerTheme"/>
271 <activity android:name="com.android.gallery3d.app.AlbumPicker"
272 android:configChanges="keyboardHidden|orientation|screenSize"
273 android:theme="@style/DialogPickerTheme"/>
Owen Lin78768052011-08-18 21:48:19 +0800274 <activity android:name="com.android.gallery3d.gadget.WidgetTypeChooser"
Owen Linb540ef12011-08-17 22:07:43 +0800275 android:configChanges="keyboardHidden|orientation|screenSize"
Ahbong Chang5fc3e592012-08-21 14:06:51 +0800276 android:theme="@style/Theme.Gallery.Dialog"/>
Owen Linb540ef12011-08-17 22:07:43 +0800277
Chih-Chung Chang00739432012-03-08 20:10:53 +0800278 <activity android:name="com.android.camera.Camera"
Michael Kolbaa5b0e42012-09-16 17:16:25 -0700279 android:taskAffinity="com.android.camera.Camera"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800280 android:label="@string/camera_label"
Wu-cheng Lic6675302012-08-14 16:21:00 +0800281 android:theme="@style/Theme.Camera"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800282 android:configChanges="orientation|screenSize|keyboardHidden"
283 android:clearTaskOnLaunch="true"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800284 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
Chih-Chung Chang00739432012-03-08 20:10:53 +0800285 </activity>
Chih-Chung Changaa29fad2012-05-04 15:26:02 +0800286
Michael Kolb645cf9f2012-09-10 15:14:56 -0700287 <activity android:name="com.android.camera.CameraActivity"
Michael Kolbaa5b0e42012-09-16 17:16:25 -0700288 android:taskAffinity="com.android.camera.CameraActivity"
Michael Kolb645cf9f2012-09-10 15:14:56 -0700289 android:label="@string/camera_label"
290 android:theme="@style/Theme.Camera"
Mangesh Ghiwaredfb1c8c2012-09-14 12:40:03 -0700291 android:icon="@mipmap/ic_launcher_camera"
Michael Kolb645cf9f2012-09-10 15:14:56 -0700292 android:configChanges="orientation|screenSize|keyboardHidden"
293 android:clearTaskOnLaunch="true"
294 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
295 <intent-filter>
Mangesh Ghiware9b12d9f2012-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 Ghiwarea03ff6f2012-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>
303 <intent-filter>
Mangesh Ghiwarea03ff6f2012-09-14 00:10:41 -0700304 <action android:name="android.media.action.VIDEO_CAMERA" />
305 <category android:name="android.intent.category.DEFAULT" />
306 </intent-filter>
Doris Liu36a10622012-09-14 18:43:41 -0700307 <intent-filter>
308 <action android:name="android.media.action.VIDEO_CAPTURE" />
309 <category android:name="android.intent.category.DEFAULT" />
310 </intent-filter>
Mangesh Ghiwarea03ff6f2012-09-14 00:10:41 -0700311 </activity>
312
Wu-cheng Lic7e76d52012-09-17 17:32:59 +0800313 <activity android:name="com.android.camera.SecureCameraActivity"
314 android:taskAffinity="com.android.camera.SecureCameraActivity"
315 android:excludeFromRecents="true"
316 android:label="@string/camera_label"
317 android:theme="@style/Theme.Camera"
318 android:icon="@mipmap/ic_launcher_camera"
319 android:configChanges="orientation|screenSize|keyboardHidden"
320 android:clearTaskOnLaunch="true"
321 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
322 <intent-filter>
323 <action android:name="android.media.action.STILL_IMAGE_CAMERA_SECURE" />
324 <category android:name="android.intent.category.DEFAULT" />
325 </intent-filter>
Wu-cheng Lifb5c8122012-09-25 11:20:27 +0800326 <intent-filter>
327 <action android:name="android.media.action.IMAGE_CAPTURE_SECURE" />
328 <category android:name="android.intent.category.DEFAULT" />
329 </intent-filter>
Wu-cheng Lic7e76d52012-09-17 17:32:59 +0800330 </activity>
331
Mangesh Ghiwarea03ff6f2012-09-14 00:10:41 -0700332 <activity-alias android:icon="@mipmap/ic_launcher_camera"
333 android:label="@string/camera_label"
334 android:name="com.android.camera.CameraLauncher"
335 android:targetActivity="com.android.camera.CameraActivity" >
336 <intent-filter>
Michael Kolb645cf9f2012-09-10 15:14:56 -0700337 <action android:name="android.intent.action.MAIN" />
338 <category android:name="android.intent.category.DEFAULT" />
339 <category android:name="android.intent.category.LAUNCHER" />
340 </intent-filter>
Mangesh Ghiwarea03ff6f2012-09-14 00:10:41 -0700341 </activity-alias>
Michael Kolb645cf9f2012-09-10 15:14:56 -0700342
Chih-Chung Chang00739432012-03-08 20:10:53 +0800343 <activity android:name="com.android.camera.VideoCamera"
Chih-Chung Changdf7359e2012-03-13 12:28:02 +0800344 android:taskAffinity="com.android.camera"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800345 android:label="@string/video_camera_label"
Wu-cheng Lic6675302012-08-14 16:21:00 +0800346 android:theme="@style/Theme.Camera"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800347 android:configChanges="orientation|screenSize|keyboardHidden"
348 android:icon="@mipmap/ic_launcher_video_camera"
349 android:clearTaskOnLaunch="true"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800350 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
Chih-Chung Chang00739432012-03-08 20:10:53 +0800351 </activity>
Pin Tingf56d0972012-03-15 14:46:53 +0800352 <activity android:name="com.android.camera.PanoramaActivity"
Chih-Chung Changdf7359e2012-03-13 12:28:02 +0800353 android:taskAffinity="com.android.camera"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800354 android:label="@string/pano_dialog_title"
Wu-cheng Lic6675302012-08-14 16:21:00 +0800355 android:theme="@style/Theme.Camera"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800356 android:configChanges="orientation|screenSize|keyboardHidden"
357 android:clearTaskOnLaunch="true"
Wu-cheng Li0ac559a2012-03-19 15:42:27 +0800358 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
Chih-Chung Chang00739432012-03-08 20:10:53 +0800359 </activity>
Owen Lin78768052011-08-18 21:48:19 +0800360 <receiver android:name="com.android.gallery3d.gadget.PhotoAppWidgetProvider"
Owen Linb540ef12011-08-17 22:07:43 +0800361 android:label="@string/appwidget_title">
362 <intent-filter>
363 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
364 </intent-filter>
365 <meta-data android:name="android.appwidget.provider"
366 android:resource="@xml/widget_info" />
367 </receiver>
368 <receiver android:name="com.android.gallery3d.app.PackagesMonitor">
369 <intent-filter>
370 <action android:name="android.intent.action.PACKAGE_ADDED"/>
371 <action android:name="android.intent.action.PACKAGE_REMOVED"/>
Chih-Chung Change5a44c52011-11-30 14:32:35 +0800372 <action android:name="android.intent.action.PACKAGE_CHANGED"/>
Owen Linb540ef12011-08-17 22:07:43 +0800373 <data android:scheme="package"/>
374 </intent-filter>
375 </receiver>
Hung-ying Tyan74bd9982012-06-27 18:25:47 +0800376 <service android:name="com.android.gallery3d.app.PackagesMonitor$AsyncService"/>
Chih-Chung Chang00739432012-03-08 20:10:53 +0800377 <receiver android:name="com.android.camera.CameraButtonIntentReceiver">
378 <intent-filter>
379 <action android:name="android.intent.action.CAMERA_BUTTON"/>
380 </intent-filter>
381 </receiver>
Chih-Chung Chang4f19a072012-03-12 16:04:59 +0800382 <receiver android:name="com.android.camera.DisableCameraReceiver">
383 <intent-filter>
384 <action android:name="android.intent.action.BOOT_COMPLETED" />
385 </intent-filter>
386 </receiver>
Owen Lin78768052011-08-18 21:48:19 +0800387 <service android:name="com.android.gallery3d.gadget.WidgetService"
Owen Linb540ef12011-08-17 22:07:43 +0800388 android:permission="android.permission.BIND_REMOTEVIEWS"/>
Owen Lin78768052011-08-18 21:48:19 +0800389 <activity android:name="com.android.gallery3d.gadget.WidgetConfigure"
Owen Linb540ef12011-08-17 22:07:43 +0800390 android:configChanges="keyboardHidden|orientation|screenSize"
391 android:theme="@style/android:Theme.Translucent.NoTitleBar">
392 <intent-filter>
393 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
394 </intent-filter>
395 </activity>
Owen Linb540ef12011-08-17 22:07:43 +0800396 </application>
397</manifest>