blob: 622707c9987aa901f1d2ff7837485244f3552092 [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
Wu-cheng Li9b095a32012-09-10 18:28:15 +080036 <!-- Icon sourced from www.psdgraphics.com/psd-icons/psd-photo-gallery-icon -->
Owen Linb540ef12011-08-17 22:07:43 +080037 <application android:icon="@mipmap/ic_launcher_gallery" android:label="@string/app_name"
38 android:name="com.android.gallery3d.app.GalleryAppImpl"
Chih-Chung Chang00739432012-03-08 20:10:53 +080039 android:theme="@style/Theme.Gallery"
Wu-cheng Lie9faef72012-04-30 17:43:01 +080040 android:logo="@mipmap/ic_launcher_gallery"
Chih-Chung Chang00739432012-03-08 20:10:53 +080041 android:hardwareAccelerated="true">
42 <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>
Ruei-sung Lin103febb2011-09-19 14:33:17 +0800227 <uses-library android:name="com.google.android.media.effects"
228 android:required="false" />
Owen Linb540ef12011-08-17 22:07:43 +0800229
230 <activity android:name="com.android.gallery3d.app.SlideshowDream"
Ruei-sung Lin103febb2011-09-19 14:33:17 +0800231 android:label="@string/slideshow_dream_name"
232 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
233 android:hardwareAccelerated="true">
Owen Linb540ef12011-08-17 22:07:43 +0800234 <intent-filter>
235 <action android:name="android.intent.action.MAIN" />
236 <category android:name="android.intent.category.DEFAULT" />
237 <category android:name="android.intent.category.DREAM" />
238 </intent-filter>
239 </activity>
240
241 <activity android:name="com.android.gallery3d.settings.GallerySettings"
Ahbong Chang5fc3e592012-08-21 14:06:51 +0800242 android:theme="@style/Theme.Gallery"
Owen Linb540ef12011-08-17 22:07:43 +0800243 android:configChanges="orientation|keyboardHidden|screenSize" />
244
245 <provider android:name="com.android.gallery3d.provider.GalleryProvider"
246 android:syncable="false"
247 android:grantUriPermissions="true"
Nick Kralevich3624abe2012-08-03 15:50:39 -0700248 android:exported="true"
Owen Linb540ef12011-08-17 22:07:43 +0800249 android:authorities="com.android.gallery3d.provider" />
Owen Lin78768052011-08-18 21:48:19 +0800250 <activity android:name="com.android.gallery3d.gadget.WidgetClickHandler" />
Owen Linb540ef12011-08-17 22:07:43 +0800251 <activity android:name="com.android.gallery3d.app.DialogPicker"
252 android:configChanges="keyboardHidden|orientation|screenSize"
253 android:theme="@style/DialogPickerTheme"/>
254 <activity android:name="com.android.gallery3d.app.AlbumPicker"
255 android:configChanges="keyboardHidden|orientation|screenSize"
256 android:theme="@style/DialogPickerTheme"/>
Owen Lin78768052011-08-18 21:48:19 +0800257 <activity android:name="com.android.gallery3d.gadget.WidgetTypeChooser"
Owen Linb540ef12011-08-17 22:07:43 +0800258 android:configChanges="keyboardHidden|orientation|screenSize"
Ahbong Chang5fc3e592012-08-21 14:06:51 +0800259 android:theme="@style/Theme.Gallery.Dialog"/>
Owen Linb540ef12011-08-17 22:07:43 +0800260
Wu-cheng Li9b095a32012-09-10 18:28:15 +0800261 <!-- Icon sourced from www.raadius.deviantart.com/art/Aeolus-HD-200984118 -->
Chih-Chung Chang00739432012-03-08 20:10:53 +0800262 <activity android:name="com.android.camera.Camera"
Michael Kolbaa5b0e42012-09-16 17:16:25 -0700263 android:taskAffinity="com.android.camera.Camera"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800264 android:label="@string/camera_label"
Wu-cheng Lic6675302012-08-14 16:21:00 +0800265 android:theme="@style/Theme.Camera"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800266 android:configChanges="orientation|screenSize|keyboardHidden"
267 android:clearTaskOnLaunch="true"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800268 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
Chih-Chung Chang00739432012-03-08 20:10:53 +0800269 </activity>
Chih-Chung Changaa29fad2012-05-04 15:26:02 +0800270
Michael Kolb645cf9f2012-09-10 15:14:56 -0700271 <activity android:name="com.android.camera.CameraActivity"
Michael Kolbaa5b0e42012-09-16 17:16:25 -0700272 android:taskAffinity="com.android.camera.CameraActivity"
Michael Kolb645cf9f2012-09-10 15:14:56 -0700273 android:label="@string/camera_label"
274 android:theme="@style/Theme.Camera"
Mangesh Ghiwaredfb1c8c2012-09-14 12:40:03 -0700275 android:icon="@mipmap/ic_launcher_camera"
Michael Kolb645cf9f2012-09-10 15:14:56 -0700276 android:configChanges="orientation|screenSize|keyboardHidden"
277 android:clearTaskOnLaunch="true"
278 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
279 <intent-filter>
Mangesh Ghiware9b12d9f2012-09-14 12:17:54 -0700280 <action android:name="android.media.action.IMAGE_CAPTURE" />
281 <category android:name="android.intent.category.DEFAULT" />
282 </intent-filter>
283 <intent-filter>
Mangesh Ghiwarea03ff6f2012-09-14 00:10:41 -0700284 <action android:name="android.media.action.STILL_IMAGE_CAMERA" />
285 <category android:name="android.intent.category.DEFAULT" />
286 </intent-filter>
287 <intent-filter>
Mangesh Ghiwarea03ff6f2012-09-14 00:10:41 -0700288 <action android:name="android.media.action.VIDEO_CAMERA" />
289 <category android:name="android.intent.category.DEFAULT" />
290 </intent-filter>
Doris Liu36a10622012-09-14 18:43:41 -0700291 <intent-filter>
292 <action android:name="android.media.action.VIDEO_CAPTURE" />
293 <category android:name="android.intent.category.DEFAULT" />
294 </intent-filter>
Mangesh Ghiwarea03ff6f2012-09-14 00:10:41 -0700295 </activity>
296
Wu-cheng Lic7e76d52012-09-17 17:32:59 +0800297 <activity android:name="com.android.camera.SecureCameraActivity"
298 android:taskAffinity="com.android.camera.SecureCameraActivity"
299 android:excludeFromRecents="true"
300 android:label="@string/camera_label"
301 android:theme="@style/Theme.Camera"
302 android:icon="@mipmap/ic_launcher_camera"
303 android:configChanges="orientation|screenSize|keyboardHidden"
304 android:clearTaskOnLaunch="true"
305 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
306 <intent-filter>
307 <action android:name="android.media.action.STILL_IMAGE_CAMERA_SECURE" />
308 <category android:name="android.intent.category.DEFAULT" />
309 </intent-filter>
Wu-cheng Lifb5c8122012-09-25 11:20:27 +0800310 <intent-filter>
311 <action android:name="android.media.action.IMAGE_CAPTURE_SECURE" />
312 <category android:name="android.intent.category.DEFAULT" />
313 </intent-filter>
Wu-cheng Lic7e76d52012-09-17 17:32:59 +0800314 </activity>
315
Mangesh Ghiwarea03ff6f2012-09-14 00:10:41 -0700316 <!-- Icon sourced from www.raadius.deviantart.com/art/Aeolus-HD-200984118 -->
317 <activity-alias android:icon="@mipmap/ic_launcher_camera"
318 android:label="@string/camera_label"
319 android:name="com.android.camera.CameraLauncher"
320 android:targetActivity="com.android.camera.CameraActivity" >
321 <intent-filter>
Michael Kolb645cf9f2012-09-10 15:14:56 -0700322 <action android:name="android.intent.action.MAIN" />
323 <category android:name="android.intent.category.DEFAULT" />
324 <category android:name="android.intent.category.LAUNCHER" />
325 </intent-filter>
Mangesh Ghiwarea03ff6f2012-09-14 00:10:41 -0700326 </activity-alias>
Michael Kolb645cf9f2012-09-10 15:14:56 -0700327
Chih-Chung Chang00739432012-03-08 20:10:53 +0800328 <activity android:name="com.android.camera.VideoCamera"
Chih-Chung Changdf7359e2012-03-13 12:28:02 +0800329 android:taskAffinity="com.android.camera"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800330 android:label="@string/video_camera_label"
Wu-cheng Lic6675302012-08-14 16:21:00 +0800331 android:theme="@style/Theme.Camera"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800332 android:configChanges="orientation|screenSize|keyboardHidden"
333 android:icon="@mipmap/ic_launcher_video_camera"
334 android:clearTaskOnLaunch="true"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800335 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
Chih-Chung Chang00739432012-03-08 20:10:53 +0800336 </activity>
Pin Tingf56d0972012-03-15 14:46:53 +0800337 <activity android:name="com.android.camera.PanoramaActivity"
Chih-Chung Changdf7359e2012-03-13 12:28:02 +0800338 android:taskAffinity="com.android.camera"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800339 android:label="@string/pano_dialog_title"
Wu-cheng Lic6675302012-08-14 16:21:00 +0800340 android:theme="@style/Theme.Camera"
Chih-Chung Chang00739432012-03-08 20:10:53 +0800341 android:configChanges="orientation|screenSize|keyboardHidden"
342 android:clearTaskOnLaunch="true"
Wu-cheng Li0ac559a2012-03-19 15:42:27 +0800343 android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
Chih-Chung Chang00739432012-03-08 20:10:53 +0800344 </activity>
Owen Lin78768052011-08-18 21:48:19 +0800345 <receiver android:name="com.android.gallery3d.gadget.PhotoAppWidgetProvider"
Owen Linb540ef12011-08-17 22:07:43 +0800346 android:label="@string/appwidget_title">
347 <intent-filter>
348 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
349 </intent-filter>
350 <meta-data android:name="android.appwidget.provider"
351 android:resource="@xml/widget_info" />
352 </receiver>
353 <receiver android:name="com.android.gallery3d.app.PackagesMonitor">
354 <intent-filter>
355 <action android:name="android.intent.action.PACKAGE_ADDED"/>
356 <action android:name="android.intent.action.PACKAGE_REMOVED"/>
Chih-Chung Change5a44c52011-11-30 14:32:35 +0800357 <action android:name="android.intent.action.PACKAGE_CHANGED"/>
Owen Linb540ef12011-08-17 22:07:43 +0800358 <data android:scheme="package"/>
359 </intent-filter>
360 </receiver>
Hung-ying Tyan74bd9982012-06-27 18:25:47 +0800361 <service android:name="com.android.gallery3d.app.PackagesMonitor$AsyncService"/>
Chih-Chung Chang00739432012-03-08 20:10:53 +0800362 <receiver android:name="com.android.camera.CameraButtonIntentReceiver">
363 <intent-filter>
364 <action android:name="android.intent.action.CAMERA_BUTTON"/>
365 </intent-filter>
366 </receiver>
Chih-Chung Chang4f19a072012-03-12 16:04:59 +0800367 <receiver android:name="com.android.camera.DisableCameraReceiver">
368 <intent-filter>
369 <action android:name="android.intent.action.BOOT_COMPLETED" />
370 </intent-filter>
371 </receiver>
Owen Lin78768052011-08-18 21:48:19 +0800372 <service android:name="com.android.gallery3d.gadget.WidgetService"
Owen Linb540ef12011-08-17 22:07:43 +0800373 android:permission="android.permission.BIND_REMOTEVIEWS"/>
Owen Lin78768052011-08-18 21:48:19 +0800374 <activity android:name="com.android.gallery3d.gadget.WidgetConfigure"
Owen Linb540ef12011-08-17 22:07:43 +0800375 android:configChanges="keyboardHidden|orientation|screenSize"
376 android:theme="@style/android:Theme.Translucent.NoTitleBar">
377 <intent-filter>
378 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
379 </intent-filter>
380 </activity>
381 </application>
382</manifest>