blob: bb731e2f7e3c18dae7cb75b6a0dd734a6f051f07 [file] [log] [blame]
Owen Linf9a0a432011-08-17 22:07:43 +08001<?xml version="1.0" encoding="utf-8"?>
jinwu4fafa7a2017-04-07 13:27:48 +08002<!-- Copyright (c) 2010-2014, 2016-2017 The Linux Foundation. All rights reserved.
kaiyizdf2a2842014-04-18 16:13:11 +08003 Not a Contribution.
4
5 Copyright (C) 2007 The Android Open Source Project
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18-->
Owen Linf9a0a432011-08-17 22:07:43 +080019
Bart Sears7d086bd2013-06-27 11:37:23 -070020<manifest android:versionCode="40030"
21 android:versionName="1.1.40030"
Owen Linf9a0a432011-08-17 22:07:43 +080022 xmlns:android="http://schemas.android.com/apk/res/android"
Likai Dingc83b5b72016-05-25 14:48:41 +080023 package="org.codeaurora.gallery">
Owen Linf9a0a432011-08-17 22:07:43 +080024
25 <original-package android:name="com.android.gallery3d" />
26
Arne Coucherond766ecf2017-07-05 01:17:46 +020027 <uses-sdk android:minSdkVersion="23" android:targetSdkVersion="28"/>
Chih-Chung Chang63764782012-03-08 20:10:53 +080028
Owen Linca181a62012-10-16 10:22:54 +080029 <permission android:name="com.android.gallery3d.permission.GALLERY_PROVIDER"
Lalit Kansara0efd7f02018-08-10 10:45:43 +090030 android:protectionLevel="signatureOrSystem" />
31
AdrianDC15feefb2015-11-19 21:57:37 +010032 <permission android:name="org.codeaurora.gallery.filtershow.permission.READ"
Lalit Kansara0efd7f02018-08-10 10:45:43 +090033 android:protectionLevel="signature" />
34
AdrianDC15feefb2015-11-19 21:57:37 +010035 <permission android:name="org.codeaurora.gallery.filtershow.permission.WRITE"
Lalit Kansara0efd7f02018-08-10 10:45:43 +090036 android:protectionLevel="signature" />
Owen Linca181a62012-10-16 10:22:54 +080037
Owen Linf9a0a432011-08-17 22:07:43 +080038 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Owen Linf9a0a432011-08-17 22:07:43 +080039 <uses-permission android:name="android.permission.INTERNET" />
40 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
jinwu9a7d1602019-06-07 10:45:03 +080041 <uses-permission android:name="android.permission.MODIFY_AUDIO_ROUTING" />
kaiyizdf2a2842014-04-18 16:13:11 +080042 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
Martijn Coenen33ef0372012-03-26 18:25:50 -070043 <uses-permission android:name="android.permission.NFC" />
Owen Linf9a0a432011-08-17 22:07:43 +080044 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Chih-Chung Changa27fc9e2012-03-12 16:04:59 +080045 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Owen Linf9a0a432011-08-17 22:07:43 +080046 <uses-permission android:name="android.permission.SET_WALLPAPER" />
47 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
48 <uses-permission android:name="android.permission.VIBRATE" />
49 <uses-permission android:name="android.permission.WAKE_LOCK" />
50 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Owen Linf9a0a432011-08-17 22:07:43 +080051 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Chih-Chung Chang63764782012-03-08 20:10:53 +080052 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
John Reck0c7d07e2013-02-06 13:18:47 -080053 <uses-permission android:name="com.android.gallery3d.permission.GALLERY_PROVIDER" />
wjiang47184c72014-02-14 17:45:53 +080054 <uses-permission android:name="android.permission.BLUETOOTH" />
zhuwc94d7b42019-04-03 10:32:19 +080055 <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
Likai Dingce6d1cf2016-06-06 15:08:29 +080056 <!-- add for guest to set system property -->
Kedi Xu3d616512016-10-12 15:52:54 +080057 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
Owen Linf9a0a432011-08-17 22:07:43 +080058
59 <supports-screens android:smallScreens="false"
60 android:normalScreens="true" android:largeScreens="true"
61 android:anyDensity="true" />
62
Asher Simondsd8675752018-02-12 10:28:12 +010063 <application android:icon="@mipmap/ic_launcher" android:label="@string/app_name"
Owen Linf9a0a432011-08-17 22:07:43 +080064 android:name="com.android.gallery3d.app.GalleryAppImpl"
Asher Simondsd8675752018-02-12 10:28:12 +010065 android:logo="@mipmap/ic_launcher"
nicolasroardf37e1e92012-09-27 12:20:11 -070066 android:hardwareAccelerated="true"
Angus Kong6fdc8752012-11-01 11:49:43 +080067 android:largeHeap="true"
Joeya09ba662018-01-25 12:20:24 +010068 android:appCategory="image"
nicolasroard105fbcf2013-09-23 16:12:10 -070069 android:restoreAnyVersion="true"
Alex Klyubin0addfeb2015-05-20 09:25:28 -070070 android:supportsRtl="true"
Likai Dingce6d1cf2016-06-06 15:08:29 +080071 android:usesCleartextTraffic="true">
Chih-Chung Chang63764782012-03-08 20:10:53 +080072 <uses-library android:name="com.google.android.media.effects" android:required="false" />
Narayan Kamathdd0ab3f2015-02-13 10:23:11 +000073 <uses-library android:name="org.apache.http.legacy" android:required="false" />
Owen Linf9a0a432011-08-17 22:07:43 +080074 <activity android:name="com.android.gallery3d.app.MovieActivity"
75 android:label="@string/movie_view_label"
Chao Zhangad5509e2016-06-06 10:39:35 +080076 android:theme="@style/Theme.MovieActivity"
zdi9c3a0fe2016-03-15 10:06:26 +080077 android:configChanges="orientation|keyboardHidden|screenSize|keyboard">
Owen Linf9a0a432011-08-17 22:07:43 +080078 <intent-filter>
79 <action android:name="android.intent.action.VIEW" />
80 <category android:name="android.intent.category.DEFAULT" />
81 <category android:name="android.intent.category.BROWSABLE" />
82 <data android:scheme="rtsp" />
83 </intent-filter>
84 <intent-filter>
85 <action android:name="android.intent.action.VIEW" />
86 <category android:name="android.intent.category.DEFAULT" />
87 <category android:name="android.intent.category.BROWSABLE" />
88 <data android:scheme="http" />
89 <data android:scheme="https" />
90 <data android:scheme="content" />
91 <data android:scheme="file" />
Likai Ding253ebbd2013-08-20 16:21:57 +080092 <data android:scheme="rtsp" />
Kedi Xue158d362016-10-20 11:06:20 +080093 <data android:mimeType="video/*" />
Owen Linf9a0a432011-08-17 22:07:43 +080094 </intent-filter>
95 <intent-filter>
Jeff Sharkeyd3edb7e2013-05-28 14:34:50 -070096 <!-- HTTP live support -->
Owen Linf9a0a432011-08-17 22:07:43 +080097 <action android:name="android.intent.action.VIEW" />
98 <category android:name="android.intent.category.DEFAULT" />
99 <category android:name="android.intent.category.BROWSABLE" />
100 <data android:scheme="http" />
Chih-Chung Chang360f1db2011-10-24 16:45:02 +0800101 <data android:scheme="https" />
Owen Linf9a0a432011-08-17 22:07:43 +0800102 <data android:mimeType="audio/x-mpegurl" />
103 <data android:mimeType="audio/mpegurl" />
104 <data android:mimeType="application/vnd.apple.mpegurl" />
105 <data android:mimeType="application/x-mpegurl" />
Rob Walkerd73fd7e2012-01-26 13:32:35 -0800106 <data android:mimeType="application/dash+xml" />
Owen Linf9a0a432011-08-17 22:07:43 +0800107 </intent-filter>
108 </activity>
Owen Lind6db8ea2011-08-18 21:48:19 +0800109
Ravi Banuri49f14dd2015-10-21 15:54:59 +0530110 <activity android:name="com.android.gallery3d.app.GalleryActivity"
111 android:theme="@style/AppTheme"
jinwu4fafa7a2017-04-07 13:27:48 +0800112 android:configChanges="keyboardHidden|orientation|screenSize|locale|fontScale|layoutDirection">
Owen Linf9a0a432011-08-17 22:07:43 +0800113 <intent-filter>
114 <action android:name="android.intent.action.MAIN" />
Jeff Brown4b8b92d2011-11-28 17:23:56 -0800115 <category android:name="android.intent.category.DEFAULT" />
Owen Linf9a0a432011-08-17 22:07:43 +0800116 <category android:name="android.intent.category.LAUNCHER" />
Jeff Brown4b8b92d2011-11-28 17:23:56 -0800117 <category android:name="android.intent.category.APP_GALLERY" />
Owen Linf9a0a432011-08-17 22:07:43 +0800118 </intent-filter>
Mangesh Ghiware47f602c2013-10-04 21:49:15 +0000119 <intent-filter>
120 <action android:name="android.intent.action.GET_CONTENT" />
121 <category android:name="android.intent.category.OPENABLE" />
122 <data android:mimeType="vnd.android.cursor.dir/image" />
123 </intent-filter>
124 <intent-filter>
125 <action android:name="android.intent.action.GET_CONTENT" />
126 <category android:name="android.intent.category.OPENABLE" />
127 <category android:name="android.intent.category.DEFAULT" />
128 <data android:mimeType="image/*" />
129 <data android:mimeType="video/*" />
130 </intent-filter>
John Reckf6e687b2013-03-08 11:19:27 -0800131 <!-- We do NOT support the PICK intent, we add these intent-filter for
132 backward compatibility. Handle it as GET_CONTENT. -->
133 <intent-filter>
134 <action android:name="android.intent.action.PICK" />
135 <category android:name="android.intent.category.DEFAULT" />
136 <data android:mimeType="image/*" />
137 <data android:mimeType="video/*" />
138 </intent-filter>
139 <intent-filter>
140 <action android:name="android.intent.action.PICK" />
141 <category android:name="android.intent.category.DEFAULT" />
142 <data android:mimeType="vnd.android.cursor.dir/image" />
143 <data android:mimeType="vnd.android.cursor.dir/video" />
144 </intent-filter>
Owen Linf9a0a432011-08-17 22:07:43 +0800145 <intent-filter>
146 <action android:name="android.intent.action.VIEW" />
147 <category android:name="android.intent.category.DEFAULT" />
148 <data android:mimeType="vnd.android.cursor.dir/image" />
149 <data android:mimeType="vnd.android.cursor.dir/video" />
150 </intent-filter>
151 <intent-filter>
152 <action android:name="android.intent.action.VIEW" />
153 <action android:name="com.android.camera.action.REVIEW" />
154 <category android:name="android.intent.category.DEFAULT" />
155 <category android:name="android.intent.category.BROWSABLE" />
156 <data android:scheme="" />
157 <data android:scheme="http" />
158 <data android:scheme="https" />
159 <data android:scheme="content" />
160 <data android:scheme="file" />
Likai Dingb6a5bb92016-09-13 15:47:40 +0800161 <data android:mimeType="image/*" />
Mangesh Ghiware07b70a52012-10-10 15:56:29 -0700162 <data android:mimeType="application/vnd.google.panorama360+jpg" />
Owen Linf9a0a432011-08-17 22:07:43 +0800163 </intent-filter>
164 <intent-filter>
165 <action android:name="com.android.camera.action.REVIEW" />
166 <category android:name="android.intent.category.DEFAULT" />
167 <category android:name="android.intent.category.BROWSABLE" />
168 <data android:scheme="http" />
169 <data android:scheme="https" />
170 <data android:scheme="content" />
171 <data android:scheme="file" />
172 <data android:mimeType="video/mpeg4" />
173 <data android:mimeType="video/mp4" />
174 <data android:mimeType="video/3gp" />
175 <data android:mimeType="video/3gpp" />
176 <data android:mimeType="video/3gpp2" />
177 <data android:mimeType="application/sdp" />
178 </intent-filter>
Owen Linf9a0a432011-08-17 22:07:43 +0800179 </activity>
180
Mangesh Ghiware06c02762013-09-11 15:59:59 -0700181 <!-- This activity acts as a trampoline to the new Gallery activity,
182 so that existing shortcuts are preserved. -->
183 <activity android:name="com.android.gallery3d.app.Gallery"
Mangesh Ghiware06c02762013-09-11 15:59:59 -0700184 android:theme="@style/android:Theme.NoDisplay">
185 <intent-filter>
186 <action android:name="android.intent.action.MAIN" />
187 <category android:name="android.intent.category.DEFAULT" />
188 </intent-filter>
189 </activity>
190
John Reck93074e92013-04-19 10:04:12 -0700191 <!-- we add this activity-alias for shortcut backward compatibility -->
192 <!-- Note: The alias must put after the target activity -->
193 <activity-alias android:name="com.cooliris.media.Gallery"
Mangesh Ghiware06c02762013-09-11 15:59:59 -0700194 android:targetActivity="com.android.gallery3d.app.GalleryActivity"
John Reckd8732612013-02-27 16:48:16 -0800195 android:configChanges="keyboardHidden|orientation|screenSize"
John Reck93074e92013-04-19 10:04:12 -0700196 android:label="@string/app_name">
197 <intent-filter>
198 <action android:name="android.intent.action.MAIN" />
199 </intent-filter>
200 </activity-alias>
John Reckd8732612013-02-27 16:48:16 -0800201
Mangesh Ghiwaref142f2f2013-08-14 08:44:07 -0700202 <!-- This activity acts as a trampoline to the new Camera activity
203 in com.android.camera2 package, so that existing shortcuts
204 are preserved. -->
205 <activity android:name="com.android.camera.CameraActivity"
206 android:icon="@mipmap/ic_launcher_camera"
207 android:label="@string/camera_label"
Mangesh Ghiware94e122b2013-09-19 15:56:15 -0700208 android:taskAffinity="com.android.camera.CameraActivity"
Mangesh Ghiwaref142f2f2013-08-14 08:44:07 -0700209 android:theme="@style/android:Theme.NoDisplay" />
210 <activity-alias android:name="com.android.camera.CameraLauncher"
Mangesh Ghiware73d0f422013-08-21 18:18:03 -0700211 android:label="@string/camera_label"
Mangesh Ghiwaref142f2f2013-08-14 08:44:07 -0700212 android:targetActivity="com.android.camera.CameraActivity">
213 <intent-filter>
214 <action android:name="android.intent.action.MAIN" />
215 <category android:name="android.intent.category.DEFAULT" />
216 </intent-filter>
217 </activity-alias>
218
Bobby Georgescud3aac522012-12-26 00:52:28 -0800219 <!-- This activity receives USB_DEVICE_ATTACHED intents and allows importing
220 media from attached MTP devices, like cameras and camera phones -->
221 <activity android:launchMode="singleInstance"
222 android:taskAffinity="" android:name="com.android.gallery3d.ingest.IngestActivity"
Bobby Georgescuc8a9e862013-02-01 12:57:14 -0800223 android:configChanges="orientation|screenSize"
Bobby Georgescud3aac522012-12-26 00:52:28 -0800224 android:label="@string/app_name">
Owen Linf9a0a432011-08-17 22:07:43 +0800225 <intent-filter>
226 <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
227 </intent-filter>
228 <meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
229 android:resource="@xml/device_filter" />
230 </activity>
Bobby Georgescud3aac522012-12-26 00:52:28 -0800231 <service android:name="com.android.gallery3d.ingest.IngestService" />
Owen Linf9a0a432011-08-17 22:07:43 +0800232
233 <activity android:name="com.android.gallery3d.app.Wallpaper"
234 android:configChanges="keyboardHidden|orientation|screenSize"
235 android:theme="@style/android:Theme.Translucent.NoTitleBar">
236 <intent-filter android:label="@string/camera_setas_wallpaper">
237 <action android:name="android.intent.action.ATTACH_DATA" />
238 <data android:mimeType="image/*" />
239 <category android:name="android.intent.category.DEFAULT" />
240 </intent-filter>
241 <intent-filter android:label="@string/app_name">
242 <action android:name="android.intent.action.SET_WALLPAPER" />
243 <category android:name="android.intent.category.DEFAULT" />
244 </intent-filter>
245 <meta-data android:name="android.wallpaper.preview"
246 android:resource="@xml/wallpaper_picker_preview" />
247 </activity>
Teng-Hui Zhu3f1f1ba2012-08-24 14:50:37 -0700248 <activity android:name="com.android.gallery3d.app.TrimVideo"
zdi6f8d6b62016-03-01 11:45:51 +0800249 android:label="@string/trim_label"
Chao Zhangad5509e2016-06-06 10:39:35 +0800250 android:theme="@style/Theme.MovieActivity"
zdi6f8d6b62016-03-01 11:45:51 +0800251 android:configChanges="keyboardHidden|orientation|screenSize">
ztenghuib6b3c8c2013-08-16 16:24:55 -0700252 <intent-filter android:label="@string/crop_label">
253 <action android:name="com.android.camera.action.TRIM" />
254 <category android:name="android.intent.category.DEFAULT" />
255 <data android:scheme="content" />
256 <data android:scheme="file" />
257 <data android:mimeType="video/*" />
258 </intent-filter>
Teng-Hui Zhu3f1f1ba2012-08-24 14:50:37 -0700259 </activity>
nicolasroardf37e1e92012-09-27 12:20:11 -0700260
nicolasroard0ee91a22012-10-01 00:25:11 -0700261 <provider
262 android:name="com.android.gallery3d.filtershow.provider.SharedImageProvider"
263 android:authorities="com.android.gallery3d.filtershow.provider.SharedImageProvider"
264 android:grantUriPermissions="true"
AdrianDC15feefb2015-11-19 21:57:37 +0100265 android:readPermission="org.codeaurora.gallery.filtershow.permission.READ"
266 android:writePermission="org.codeaurora.gallery.filtershow.permission.WRITE" />
nicolasroard24d6ec72013-07-12 18:27:54 -0700267
268 <service
Likai Ding49eee1c2016-06-17 15:30:06 +0800269 android:name="com.android.gallery3d.filtershow.pipeline.ProcessingService"
nicolasroard24d6ec72013-07-12 18:27:54 -0700270 android:exported="false" />
271
nicolasroardf37e1e92012-09-27 12:20:11 -0700272 <activity
273 android:name="com.android.gallery3d.filtershow.FilterShowActivity"
nicolasroard9cd73082012-11-28 19:11:42 -0800274 android:theme="@style/Theme.FilterShow"
zhuw505eea22017-06-26 15:31:33 +0800275 android:configChanges="keyboardHidden|orientation|screenSize|locale|layoutDirection">
nicolasroardf37e1e92012-09-27 12:20:11 -0700276 <intent-filter>
277 <action android:name="android.intent.action.EDIT" />
278 <category android:name="android.intent.category.DEFAULT" />
279 <data android:mimeType="image/*" />
280 </intent-filter>
281 <intent-filter>
282 <action android:name="action_nextgen_edit" />
283 <category android:name="android.intent.category.DEFAULT" />
284 <data android:mimeType="image/*" />
285 </intent-filter>
Ruben Brunk6fe165b2013-04-04 17:20:42 -0700286 </activity>
287
288 <activity
289 android:name="com.android.gallery3d.filtershow.crop.CropActivity"
290 android:label="@string/crop"
nicolasroard7432c522013-09-24 14:20:04 -0700291 android:theme="@style/Theme.Crop"
Chao Zhangd34f6bc2016-03-16 19:34:56 +0800292 android:configChanges="keyboardHidden|orientation|screenSize|fontScale">
Ruben Brunk6fe165b2013-04-04 17:20:42 -0700293 <intent-filter android:label="@string/crop_label">
Ruben Brunk795776f2012-12-05 22:07:12 -0800294 <action android:name="com.android.camera.action.CROP" />
Ruben Brunk5aa454b2012-10-25 15:53:42 -0700295 <data android:scheme="content" />
296 <data android:scheme="file" />
Ruben Brunk63926d22012-10-17 00:40:35 -0700297 <data android:mimeType="image/*" />
298 <category android:name="android.intent.category.DEFAULT" />
299 <category android:name="android.intent.category.ALTERNATIVE" />
300 <category android:name="android.intent.category.SELECTED_ALTERNATIVE" />
301 </intent-filter>
nicolasroardf37e1e92012-09-27 12:20:11 -0700302 </activity>
303
Ruei-sung Lind37ff2e2011-09-19 14:33:17 +0800304 <uses-library android:name="com.google.android.media.effects"
305 android:required="false" />
Owen Linf9a0a432011-08-17 22:07:43 +0800306
Owen Linf9a0a432011-08-17 22:07:43 +0800307 <activity android:name="com.android.gallery3d.settings.GallerySettings"
Ahbong Changab15e832012-08-21 14:06:51 +0800308 android:theme="@style/Theme.Gallery"
Owen Linf9a0a432011-08-17 22:07:43 +0800309 android:configChanges="orientation|keyboardHidden|screenSize" />
310
Likai Dingb2e91002013-08-13 14:07:48 +0800311 <activity android:name="com.android.gallery3d.util.ViewGifImage"
312 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
313 android:configChanges="orientation|keyboardHidden|screenSize|keyboard|navigation">
314 <intent-filter>
315 <action android:name="com.android.gallery3d.VIEW_GIF" />
316 <data android:mimeType="image/gif" />
317 <category android:name="android.intent.category.DEFAULT" />
318 </intent-filter>
319 </activity>
320
Owen Linf9a0a432011-08-17 22:07:43 +0800321 <provider android:name="com.android.gallery3d.provider.GalleryProvider"
322 android:syncable="false"
323 android:grantUriPermissions="true"
Nick Kraleviche8e80ba2012-08-03 15:50:39 -0700324 android:exported="true"
Owen Linca181a62012-10-16 10:22:54 +0800325 android:permission="com.android.gallery3d.permission.GALLERY_PROVIDER"
Owen Linf9a0a432011-08-17 22:07:43 +0800326 android:authorities="com.android.gallery3d.provider" />
George Mountc8419b42013-02-20 17:01:54 -0800327 <provider
328 android:name="com.android.photos.data.PhotoProvider"
329 android:authorities="com.android.gallery3d.photoprovider"
330 android:syncable="false"
331 android:exported="false"/>
junjiez2db971a2018-06-01 16:15:21 +0800332 <provider
Aurimas Liutikasd8608162018-03-28 11:45:44 -0700333 android:name="androidx.core.content.FileProvider"
junjiez2db971a2018-06-01 16:15:21 +0800334 android:authorities="com.android.gallery3d.fileprovider"
335 android:exported="false"
336 android:grantUriPermissions="true">
337 <meta-data
338 android:name="android.support.FILE_PROVIDER_PATHS"
339 android:resource="@xml/provider_paths"/>
340 </provider>
Kedi Xu3a841f92016-08-17 14:16:42 +0800341 <activity
342 android:name="com.android.gallery3d.gadget.WidgetClickHandler"
343 android:theme="@android:style/Theme.NoDisplay" />
Owen Linf9a0a432011-08-17 22:07:43 +0800344 <activity android:name="com.android.gallery3d.app.DialogPicker"
345 android:configChanges="keyboardHidden|orientation|screenSize"
346 android:theme="@style/DialogPickerTheme"/>
347 <activity android:name="com.android.gallery3d.app.AlbumPicker"
348 android:configChanges="keyboardHidden|orientation|screenSize"
349 android:theme="@style/DialogPickerTheme"/>
Owen Lind6db8ea2011-08-18 21:48:19 +0800350 <activity android:name="com.android.gallery3d.gadget.WidgetTypeChooser"
Owen Linf9a0a432011-08-17 22:07:43 +0800351 android:configChanges="keyboardHidden|orientation|screenSize"
Ahbong Changab15e832012-08-21 14:06:51 +0800352 android:theme="@style/Theme.Gallery.Dialog"/>
Mangesh Ghiware2bb9b8c2012-10-22 15:47:22 -0700353
Owen Lind6db8ea2011-08-18 21:48:19 +0800354 <receiver android:name="com.android.gallery3d.gadget.PhotoAppWidgetProvider"
Owen Linf9a0a432011-08-17 22:07:43 +0800355 android:label="@string/appwidget_title">
356 <intent-filter>
357 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
358 </intent-filter>
359 <meta-data android:name="android.appwidget.provider"
360 android:resource="@xml/widget_info" />
361 </receiver>
Owen Lind6db8ea2011-08-18 21:48:19 +0800362 <service android:name="com.android.gallery3d.gadget.WidgetService"
Owen Linf9a0a432011-08-17 22:07:43 +0800363 android:permission="android.permission.BIND_REMOTEVIEWS"/>
Owen Lind6db8ea2011-08-18 21:48:19 +0800364 <activity android:name="com.android.gallery3d.gadget.WidgetConfigure"
Owen Linf9a0a432011-08-17 22:07:43 +0800365 android:configChanges="keyboardHidden|orientation|screenSize"
366 android:theme="@style/android:Theme.Translucent.NoTitleBar">
367 <intent-filter>
368 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
369 </intent-filter>
370 </activity>
Bobby Georgescua2d0d342012-12-03 13:56:00 -0800371 <service android:name="com.android.gallery3d.app.BatchService" />
Mangesh Ghiware5cf48122013-09-22 13:00:24 -0700372
373 <receiver android:name="com.android.camera.DisableCameraReceiver">
374 <intent-filter>
375 <action android:name="android.intent.action.BOOT_COMPLETED" />
376 </intent-filter>
377 </receiver>
378
Angus Kongc0993982013-01-29 17:43:48 -0800379 <service android:name="com.android.camera.MediaSaveService" />
Likai Dingd42e6dc2013-08-19 16:33:24 +0800380
381 <activity android:name="org.codeaurora.gallery3d.video.SettingsActivity"
Ravi Banuri49f14dd2015-10-21 15:54:59 +0530382 android:theme="@android:style/Theme.Material.Light"
Likai Dingd42e6dc2013-08-19 16:33:24 +0800383 android:configChanges="keyboardHidden|orientation|screenSize"
384 android:label="@string/streaming_settings" >
385 <intent-filter>
386 <action android:name="org.codeaurora.settings.streaming" />
387 <action android:name="android.intent.action.MAIN" />
388 <category android:name="android.intent.category.DEFAULT" />
389 </intent-filter>
390 </activity>
391 <receiver android:name="org.codeaurora.gallery3d.video.DmReceiver" >
392 <intent-filter>
Likai Dingd42e6dc2013-08-19 16:33:24 +0800393 <action android:name="streaming.action.WRITE_SETTINGS" />
394 </intent-filter>
395 </receiver>
396
397 <activity android:name="org.codeaurora.gallery3d.video.BookmarkActivity"
398 android:configChanges="keyboardHidden|orientation|screenSize"
399 android:icon="@drawable/ic_menu_display_bookmark"
400 android:label="@string/bookmark_list"
401 android:theme="@android:style/Theme.Holo" >
402 <intent-filter>
403 <action android:name="org.codeaurora.bookmark.VIEW" />
404 <category android:name="android.intent.category.DEFAULT" />
405 </intent-filter>
406 </activity>
Likai Ding253ebbd2013-08-20 16:21:57 +0800407 <activity android:name="org.codeaurora.gallery3d.video.VideoSettingsActivity"
408 android:label="@string/movie_view_label"
Ravi Banuri49f14dd2015-10-21 15:54:59 +0530409 android:theme="@android:style/Theme.Material.Light"
Likai Ding253ebbd2013-08-20 16:21:57 +0800410 android:configChanges="orientation|keyboardHidden|screenSize|mnc|mcc">
411 </activity>
jinwu4fafa7a2017-04-07 13:27:48 +0800412 <activity android:name="com.android.gallery3d.app.dualcam3d.ThreeDimensionalActivity"
413 android:configChanges="orientation|screenSize|layoutDirection">
414 </activity>
Owen Linf9a0a432011-08-17 22:07:43 +0800415 </application>
416</manifest>