blob: 18b83ca6a90a30156bfc170a017437d75c16ac25 [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 Coucheron1bf43ee2017-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
AdrianDC5c83a0a2015-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
AdrianDC5c83a0a2015-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" />
kaiyizdf2a2842014-04-18 16:13:11 +080041 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
Martijn Coenen33ef0372012-03-26 18:25:50 -070042 <uses-permission android:name="android.permission.NFC" />
Owen Linf9a0a432011-08-17 22:07:43 +080043 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Chih-Chung Changa27fc9e2012-03-12 16:04:59 +080044 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Owen Linf9a0a432011-08-17 22:07:43 +080045 <uses-permission android:name="android.permission.SET_WALLPAPER" />
46 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
47 <uses-permission android:name="android.permission.VIBRATE" />
48 <uses-permission android:name="android.permission.WAKE_LOCK" />
49 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Owen Linf9a0a432011-08-17 22:07:43 +080050 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Chih-Chung Chang63764782012-03-08 20:10:53 +080051 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
John Reck0c7d07e2013-02-06 13:18:47 -080052 <uses-permission android:name="com.android.gallery3d.permission.GALLERY_PROVIDER" />
wjiang47184c72014-02-14 17:45:53 +080053 <uses-permission android:name="android.permission.BLUETOOTH" />
zhuwc94d7b42019-04-03 10:32:19 +080054 <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
Likai Dingce6d1cf2016-06-06 15:08:29 +080055 <!-- add for guest to set system property -->
Kedi Xu3d616512016-10-12 15:52:54 +080056 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
Owen Linf9a0a432011-08-17 22:07:43 +080057
58 <supports-screens android:smallScreens="false"
59 android:normalScreens="true" android:largeScreens="true"
60 android:anyDensity="true" />
61
Asher Simonds669b0a92018-02-12 10:28:12 +010062 <application android:icon="@mipmap/ic_launcher" android:label="@string/app_name"
Owen Linf9a0a432011-08-17 22:07:43 +080063 android:name="com.android.gallery3d.app.GalleryAppImpl"
Asher Simonds669b0a92018-02-12 10:28:12 +010064 android:logo="@mipmap/ic_launcher"
nicolasroardf37e1e92012-09-27 12:20:11 -070065 android:hardwareAccelerated="true"
Angus Kong6fdc8752012-11-01 11:49:43 +080066 android:largeHeap="true"
Joey3fdfc122018-01-25 12:20:24 +010067 android:appCategory="image"
nicolasroard105fbcf2013-09-23 16:12:10 -070068 android:restoreAnyVersion="true"
Alex Klyubin0addfeb2015-05-20 09:25:28 -070069 android:supportsRtl="true"
Likai Dingce6d1cf2016-06-06 15:08:29 +080070 android:usesCleartextTraffic="true">
Chih-Chung Chang63764782012-03-08 20:10:53 +080071 <uses-library android:name="com.google.android.media.effects" android:required="false" />
Narayan Kamathdd0ab3f2015-02-13 10:23:11 +000072 <uses-library android:name="org.apache.http.legacy" android:required="false" />
Owen Linf9a0a432011-08-17 22:07:43 +080073 <activity android:name="com.android.gallery3d.app.MovieActivity"
74 android:label="@string/movie_view_label"
Chao Zhangad5509e2016-06-06 10:39:35 +080075 android:theme="@style/Theme.MovieActivity"
zdi9c3a0fe2016-03-15 10:06:26 +080076 android:configChanges="orientation|keyboardHidden|screenSize|keyboard">
Owen Linf9a0a432011-08-17 22:07:43 +080077 <intent-filter>
78 <action android:name="android.intent.action.VIEW" />
79 <category android:name="android.intent.category.DEFAULT" />
80 <category android:name="android.intent.category.BROWSABLE" />
81 <data android:scheme="rtsp" />
82 </intent-filter>
83 <intent-filter>
84 <action android:name="android.intent.action.VIEW" />
85 <category android:name="android.intent.category.DEFAULT" />
86 <category android:name="android.intent.category.BROWSABLE" />
87 <data android:scheme="http" />
88 <data android:scheme="https" />
89 <data android:scheme="content" />
90 <data android:scheme="file" />
Likai Ding253ebbd2013-08-20 16:21:57 +080091 <data android:scheme="rtsp" />
Kedi Xue158d362016-10-20 11:06:20 +080092 <data android:mimeType="video/*" />
Owen Linf9a0a432011-08-17 22:07:43 +080093 </intent-filter>
94 <intent-filter>
Jeff Sharkeyd3edb7e2013-05-28 14:34:50 -070095 <!-- HTTP live support -->
Owen Linf9a0a432011-08-17 22:07:43 +080096 <action android:name="android.intent.action.VIEW" />
97 <category android:name="android.intent.category.DEFAULT" />
98 <category android:name="android.intent.category.BROWSABLE" />
99 <data android:scheme="http" />
Chih-Chung Chang360f1db2011-10-24 16:45:02 +0800100 <data android:scheme="https" />
Owen Linf9a0a432011-08-17 22:07:43 +0800101 <data android:mimeType="audio/x-mpegurl" />
102 <data android:mimeType="audio/mpegurl" />
103 <data android:mimeType="application/vnd.apple.mpegurl" />
104 <data android:mimeType="application/x-mpegurl" />
Rob Walkerd73fd7e2012-01-26 13:32:35 -0800105 <data android:mimeType="application/dash+xml" />
Owen Linf9a0a432011-08-17 22:07:43 +0800106 </intent-filter>
107 </activity>
Owen Lind6db8ea2011-08-18 21:48:19 +0800108
Ravi Banuri49f14dd2015-10-21 15:54:59 +0530109 <activity android:name="com.android.gallery3d.app.GalleryActivity"
110 android:theme="@style/AppTheme"
jinwu4fafa7a2017-04-07 13:27:48 +0800111 android:configChanges="keyboardHidden|orientation|screenSize|locale|fontScale|layoutDirection">
Owen Linf9a0a432011-08-17 22:07:43 +0800112 <intent-filter>
113 <action android:name="android.intent.action.MAIN" />
Jeff Brown4b8b92d2011-11-28 17:23:56 -0800114 <category android:name="android.intent.category.DEFAULT" />
Owen Linf9a0a432011-08-17 22:07:43 +0800115 <category android:name="android.intent.category.LAUNCHER" />
Jeff Brown4b8b92d2011-11-28 17:23:56 -0800116 <category android:name="android.intent.category.APP_GALLERY" />
Owen Linf9a0a432011-08-17 22:07:43 +0800117 </intent-filter>
Mangesh Ghiware47f602c2013-10-04 21:49:15 +0000118 <intent-filter>
119 <action android:name="android.intent.action.GET_CONTENT" />
120 <category android:name="android.intent.category.OPENABLE" />
121 <data android:mimeType="vnd.android.cursor.dir/image" />
122 </intent-filter>
123 <intent-filter>
124 <action android:name="android.intent.action.GET_CONTENT" />
125 <category android:name="android.intent.category.OPENABLE" />
126 <category android:name="android.intent.category.DEFAULT" />
127 <data android:mimeType="image/*" />
128 <data android:mimeType="video/*" />
129 </intent-filter>
John Reckf6e687b2013-03-08 11:19:27 -0800130 <!-- We do NOT support the PICK intent, we add these intent-filter for
131 backward compatibility. Handle it as GET_CONTENT. -->
132 <intent-filter>
133 <action android:name="android.intent.action.PICK" />
134 <category android:name="android.intent.category.DEFAULT" />
135 <data android:mimeType="image/*" />
136 <data android:mimeType="video/*" />
137 </intent-filter>
138 <intent-filter>
139 <action android:name="android.intent.action.PICK" />
140 <category android:name="android.intent.category.DEFAULT" />
141 <data android:mimeType="vnd.android.cursor.dir/image" />
142 <data android:mimeType="vnd.android.cursor.dir/video" />
143 </intent-filter>
Owen Linf9a0a432011-08-17 22:07:43 +0800144 <intent-filter>
145 <action android:name="android.intent.action.VIEW" />
146 <category android:name="android.intent.category.DEFAULT" />
147 <data android:mimeType="vnd.android.cursor.dir/image" />
148 <data android:mimeType="vnd.android.cursor.dir/video" />
149 </intent-filter>
150 <intent-filter>
151 <action android:name="android.intent.action.VIEW" />
152 <action android:name="com.android.camera.action.REVIEW" />
153 <category android:name="android.intent.category.DEFAULT" />
154 <category android:name="android.intent.category.BROWSABLE" />
155 <data android:scheme="" />
156 <data android:scheme="http" />
157 <data android:scheme="https" />
158 <data android:scheme="content" />
159 <data android:scheme="file" />
Likai Dingb6a5bb92016-09-13 15:47:40 +0800160 <data android:mimeType="image/*" />
Mangesh Ghiware07b70a52012-10-10 15:56:29 -0700161 <data android:mimeType="application/vnd.google.panorama360+jpg" />
Owen Linf9a0a432011-08-17 22:07:43 +0800162 </intent-filter>
163 <intent-filter>
164 <action android:name="com.android.camera.action.REVIEW" />
165 <category android:name="android.intent.category.DEFAULT" />
166 <category android:name="android.intent.category.BROWSABLE" />
167 <data android:scheme="http" />
168 <data android:scheme="https" />
169 <data android:scheme="content" />
170 <data android:scheme="file" />
171 <data android:mimeType="video/mpeg4" />
172 <data android:mimeType="video/mp4" />
173 <data android:mimeType="video/3gp" />
174 <data android:mimeType="video/3gpp" />
175 <data android:mimeType="video/3gpp2" />
176 <data android:mimeType="application/sdp" />
177 </intent-filter>
Owen Linf9a0a432011-08-17 22:07:43 +0800178 </activity>
179
Mangesh Ghiware06c02762013-09-11 15:59:59 -0700180 <!-- This activity acts as a trampoline to the new Gallery activity,
181 so that existing shortcuts are preserved. -->
182 <activity android:name="com.android.gallery3d.app.Gallery"
Mangesh Ghiware06c02762013-09-11 15:59:59 -0700183 android:theme="@style/android:Theme.NoDisplay">
184 <intent-filter>
185 <action android:name="android.intent.action.MAIN" />
186 <category android:name="android.intent.category.DEFAULT" />
187 </intent-filter>
188 </activity>
189
John Reck93074e92013-04-19 10:04:12 -0700190 <!-- we add this activity-alias for shortcut backward compatibility -->
191 <!-- Note: The alias must put after the target activity -->
192 <activity-alias android:name="com.cooliris.media.Gallery"
Mangesh Ghiware06c02762013-09-11 15:59:59 -0700193 android:targetActivity="com.android.gallery3d.app.GalleryActivity"
John Reckd8732612013-02-27 16:48:16 -0800194 android:configChanges="keyboardHidden|orientation|screenSize"
John Reck93074e92013-04-19 10:04:12 -0700195 android:label="@string/app_name">
196 <intent-filter>
197 <action android:name="android.intent.action.MAIN" />
198 </intent-filter>
199 </activity-alias>
John Reckd8732612013-02-27 16:48:16 -0800200
Mangesh Ghiwaref142f2f2013-08-14 08:44:07 -0700201 <!-- This activity acts as a trampoline to the new Camera activity
202 in com.android.camera2 package, so that existing shortcuts
203 are preserved. -->
204 <activity android:name="com.android.camera.CameraActivity"
205 android:icon="@mipmap/ic_launcher_camera"
206 android:label="@string/camera_label"
Mangesh Ghiware94e122b2013-09-19 15:56:15 -0700207 android:taskAffinity="com.android.camera.CameraActivity"
Mangesh Ghiwaref142f2f2013-08-14 08:44:07 -0700208 android:theme="@style/android:Theme.NoDisplay" />
209 <activity-alias android:name="com.android.camera.CameraLauncher"
Mangesh Ghiware73d0f422013-08-21 18:18:03 -0700210 android:label="@string/camera_label"
Mangesh Ghiwaref142f2f2013-08-14 08:44:07 -0700211 android:targetActivity="com.android.camera.CameraActivity">
212 <intent-filter>
213 <action android:name="android.intent.action.MAIN" />
214 <category android:name="android.intent.category.DEFAULT" />
215 </intent-filter>
216 </activity-alias>
217
Bobby Georgescud3aac522012-12-26 00:52:28 -0800218 <!-- This activity receives USB_DEVICE_ATTACHED intents and allows importing
219 media from attached MTP devices, like cameras and camera phones -->
220 <activity android:launchMode="singleInstance"
221 android:taskAffinity="" android:name="com.android.gallery3d.ingest.IngestActivity"
Bobby Georgescuc8a9e862013-02-01 12:57:14 -0800222 android:configChanges="orientation|screenSize"
Bobby Georgescud3aac522012-12-26 00:52:28 -0800223 android:label="@string/app_name">
Owen Linf9a0a432011-08-17 22:07:43 +0800224 <intent-filter>
225 <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
226 </intent-filter>
227 <meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
228 android:resource="@xml/device_filter" />
229 </activity>
Bobby Georgescud3aac522012-12-26 00:52:28 -0800230 <service android:name="com.android.gallery3d.ingest.IngestService" />
Owen Linf9a0a432011-08-17 22:07:43 +0800231
232 <activity android:name="com.android.gallery3d.app.Wallpaper"
233 android:configChanges="keyboardHidden|orientation|screenSize"
234 android:theme="@style/android:Theme.Translucent.NoTitleBar">
235 <intent-filter android:label="@string/camera_setas_wallpaper">
236 <action android:name="android.intent.action.ATTACH_DATA" />
237 <data android:mimeType="image/*" />
238 <category android:name="android.intent.category.DEFAULT" />
239 </intent-filter>
240 <intent-filter android:label="@string/app_name">
241 <action android:name="android.intent.action.SET_WALLPAPER" />
242 <category android:name="android.intent.category.DEFAULT" />
243 </intent-filter>
244 <meta-data android:name="android.wallpaper.preview"
245 android:resource="@xml/wallpaper_picker_preview" />
246 </activity>
Teng-Hui Zhu3f1f1ba2012-08-24 14:50:37 -0700247 <activity android:name="com.android.gallery3d.app.TrimVideo"
zdi6f8d6b62016-03-01 11:45:51 +0800248 android:label="@string/trim_label"
Chao Zhangad5509e2016-06-06 10:39:35 +0800249 android:theme="@style/Theme.MovieActivity"
zdi6f8d6b62016-03-01 11:45:51 +0800250 android:configChanges="keyboardHidden|orientation|screenSize">
ztenghuib6b3c8c2013-08-16 16:24:55 -0700251 <intent-filter android:label="@string/crop_label">
252 <action android:name="com.android.camera.action.TRIM" />
253 <category android:name="android.intent.category.DEFAULT" />
254 <data android:scheme="content" />
255 <data android:scheme="file" />
256 <data android:mimeType="video/*" />
257 </intent-filter>
Teng-Hui Zhu3f1f1ba2012-08-24 14:50:37 -0700258 </activity>
nicolasroardf37e1e92012-09-27 12:20:11 -0700259
nicolasroard0ee91a22012-10-01 00:25:11 -0700260 <provider
261 android:name="com.android.gallery3d.filtershow.provider.SharedImageProvider"
262 android:authorities="com.android.gallery3d.filtershow.provider.SharedImageProvider"
263 android:grantUriPermissions="true"
AdrianDC5c83a0a2015-11-19 21:57:37 +0100264 android:readPermission="org.codeaurora.gallery.filtershow.permission.READ"
265 android:writePermission="org.codeaurora.gallery.filtershow.permission.WRITE" />
nicolasroard24d6ec72013-07-12 18:27:54 -0700266
267 <service
Likai Ding49eee1c2016-06-17 15:30:06 +0800268 android:name="com.android.gallery3d.filtershow.pipeline.ProcessingService"
nicolasroard24d6ec72013-07-12 18:27:54 -0700269 android:exported="false" />
270
nicolasroardf37e1e92012-09-27 12:20:11 -0700271 <activity
272 android:name="com.android.gallery3d.filtershow.FilterShowActivity"
nicolasroard9cd73082012-11-28 19:11:42 -0800273 android:theme="@style/Theme.FilterShow"
zhuw505eea22017-06-26 15:31:33 +0800274 android:configChanges="keyboardHidden|orientation|screenSize|locale|layoutDirection">
nicolasroardf37e1e92012-09-27 12:20:11 -0700275 <intent-filter>
276 <action android:name="android.intent.action.EDIT" />
277 <category android:name="android.intent.category.DEFAULT" />
278 <data android:mimeType="image/*" />
279 </intent-filter>
280 <intent-filter>
281 <action android:name="action_nextgen_edit" />
282 <category android:name="android.intent.category.DEFAULT" />
283 <data android:mimeType="image/*" />
284 </intent-filter>
Ruben Brunk6fe165b2013-04-04 17:20:42 -0700285 </activity>
286
287 <activity
288 android:name="com.android.gallery3d.filtershow.crop.CropActivity"
289 android:label="@string/crop"
nicolasroard7432c522013-09-24 14:20:04 -0700290 android:theme="@style/Theme.Crop"
Chao Zhangd34f6bc2016-03-16 19:34:56 +0800291 android:configChanges="keyboardHidden|orientation|screenSize|fontScale">
Ruben Brunk6fe165b2013-04-04 17:20:42 -0700292 <intent-filter android:label="@string/crop_label">
Ruben Brunk795776f2012-12-05 22:07:12 -0800293 <action android:name="com.android.camera.action.CROP" />
Ruben Brunk5aa454b2012-10-25 15:53:42 -0700294 <data android:scheme="content" />
295 <data android:scheme="file" />
Ruben Brunk63926d22012-10-17 00:40:35 -0700296 <data android:mimeType="image/*" />
297 <category android:name="android.intent.category.DEFAULT" />
298 <category android:name="android.intent.category.ALTERNATIVE" />
299 <category android:name="android.intent.category.SELECTED_ALTERNATIVE" />
300 </intent-filter>
nicolasroardf37e1e92012-09-27 12:20:11 -0700301 </activity>
302
Ruei-sung Lind37ff2e2011-09-19 14:33:17 +0800303 <uses-library android:name="com.google.android.media.effects"
304 android:required="false" />
Owen Linf9a0a432011-08-17 22:07:43 +0800305
Owen Linf9a0a432011-08-17 22:07:43 +0800306 <activity android:name="com.android.gallery3d.settings.GallerySettings"
Ahbong Changab15e832012-08-21 14:06:51 +0800307 android:theme="@style/Theme.Gallery"
Owen Linf9a0a432011-08-17 22:07:43 +0800308 android:configChanges="orientation|keyboardHidden|screenSize" />
309
Likai Ding7863e922013-08-13 14:07:48 +0800310 <activity android:name="com.android.gallery3d.util.ViewGifImage"
311 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
312 android:configChanges="orientation|keyboardHidden|screenSize|keyboard|navigation">
313 <intent-filter>
314 <action android:name="com.android.gallery3d.VIEW_GIF" />
315 <data android:mimeType="image/gif" />
316 <category android:name="android.intent.category.DEFAULT" />
317 </intent-filter>
318 </activity>
319
Owen Linf9a0a432011-08-17 22:07:43 +0800320 <provider android:name="com.android.gallery3d.provider.GalleryProvider"
321 android:syncable="false"
322 android:grantUriPermissions="true"
Nick Kraleviche8e80ba2012-08-03 15:50:39 -0700323 android:exported="true"
Owen Linca181a62012-10-16 10:22:54 +0800324 android:permission="com.android.gallery3d.permission.GALLERY_PROVIDER"
Owen Linf9a0a432011-08-17 22:07:43 +0800325 android:authorities="com.android.gallery3d.provider" />
George Mountc8419b42013-02-20 17:01:54 -0800326 <provider
327 android:name="com.android.photos.data.PhotoProvider"
328 android:authorities="com.android.gallery3d.photoprovider"
329 android:syncable="false"
330 android:exported="false"/>
junjiez2db971a2018-06-01 16:15:21 +0800331 <provider
Aurimas Liutikas8d08b1f2018-03-28 11:45:44 -0700332 android:name="androidx.core.content.FileProvider"
junjiez2db971a2018-06-01 16:15:21 +0800333 android:authorities="com.android.gallery3d.fileprovider"
334 android:exported="false"
335 android:grantUriPermissions="true">
336 <meta-data
337 android:name="android.support.FILE_PROVIDER_PATHS"
338 android:resource="@xml/provider_paths"/>
339 </provider>
Kedi Xu3a841f92016-08-17 14:16:42 +0800340 <activity
341 android:name="com.android.gallery3d.gadget.WidgetClickHandler"
342 android:theme="@android:style/Theme.NoDisplay" />
Owen Linf9a0a432011-08-17 22:07:43 +0800343 <activity android:name="com.android.gallery3d.app.DialogPicker"
344 android:configChanges="keyboardHidden|orientation|screenSize"
345 android:theme="@style/DialogPickerTheme"/>
346 <activity android:name="com.android.gallery3d.app.AlbumPicker"
347 android:configChanges="keyboardHidden|orientation|screenSize"
348 android:theme="@style/DialogPickerTheme"/>
Owen Lind6db8ea2011-08-18 21:48:19 +0800349 <activity android:name="com.android.gallery3d.gadget.WidgetTypeChooser"
Owen Linf9a0a432011-08-17 22:07:43 +0800350 android:configChanges="keyboardHidden|orientation|screenSize"
Ahbong Changab15e832012-08-21 14:06:51 +0800351 android:theme="@style/Theme.Gallery.Dialog"/>
Mangesh Ghiware2bb9b8c2012-10-22 15:47:22 -0700352
Owen Lind6db8ea2011-08-18 21:48:19 +0800353 <receiver android:name="com.android.gallery3d.gadget.PhotoAppWidgetProvider"
Owen Linf9a0a432011-08-17 22:07:43 +0800354 android:label="@string/appwidget_title">
355 <intent-filter>
356 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
357 </intent-filter>
358 <meta-data android:name="android.appwidget.provider"
359 android:resource="@xml/widget_info" />
360 </receiver>
Owen Lind6db8ea2011-08-18 21:48:19 +0800361 <service android:name="com.android.gallery3d.gadget.WidgetService"
Owen Linf9a0a432011-08-17 22:07:43 +0800362 android:permission="android.permission.BIND_REMOTEVIEWS"/>
Owen Lind6db8ea2011-08-18 21:48:19 +0800363 <activity android:name="com.android.gallery3d.gadget.WidgetConfigure"
Owen Linf9a0a432011-08-17 22:07:43 +0800364 android:configChanges="keyboardHidden|orientation|screenSize"
365 android:theme="@style/android:Theme.Translucent.NoTitleBar">
366 <intent-filter>
367 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
368 </intent-filter>
369 </activity>
Bobby Georgescua2d0d342012-12-03 13:56:00 -0800370 <service android:name="com.android.gallery3d.app.BatchService" />
Mangesh Ghiware5cf48122013-09-22 13:00:24 -0700371
372 <receiver android:name="com.android.camera.DisableCameraReceiver">
373 <intent-filter>
374 <action android:name="android.intent.action.BOOT_COMPLETED" />
375 </intent-filter>
376 </receiver>
377
Angus Kongc0993982013-01-29 17:43:48 -0800378 <service android:name="com.android.camera.MediaSaveService" />
Likai Dingd42e6dc2013-08-19 16:33:24 +0800379
380 <activity android:name="org.codeaurora.gallery3d.video.SettingsActivity"
Ravi Banuri49f14dd2015-10-21 15:54:59 +0530381 android:theme="@android:style/Theme.Material.Light"
Likai Dingd42e6dc2013-08-19 16:33:24 +0800382 android:configChanges="keyboardHidden|orientation|screenSize"
383 android:label="@string/streaming_settings" >
384 <intent-filter>
385 <action android:name="org.codeaurora.settings.streaming" />
386 <action android:name="android.intent.action.MAIN" />
387 <category android:name="android.intent.category.DEFAULT" />
388 </intent-filter>
389 </activity>
390 <receiver android:name="org.codeaurora.gallery3d.video.DmReceiver" >
391 <intent-filter>
Likai Dingd42e6dc2013-08-19 16:33:24 +0800392 <action android:name="streaming.action.WRITE_SETTINGS" />
393 </intent-filter>
394 </receiver>
395
396 <activity android:name="org.codeaurora.gallery3d.video.BookmarkActivity"
397 android:configChanges="keyboardHidden|orientation|screenSize"
398 android:icon="@drawable/ic_menu_display_bookmark"
399 android:label="@string/bookmark_list"
400 android:theme="@android:style/Theme.Holo" >
401 <intent-filter>
402 <action android:name="org.codeaurora.bookmark.VIEW" />
403 <category android:name="android.intent.category.DEFAULT" />
404 </intent-filter>
405 </activity>
Likai Ding253ebbd2013-08-20 16:21:57 +0800406 <activity android:name="org.codeaurora.gallery3d.video.VideoSettingsActivity"
407 android:label="@string/movie_view_label"
Ravi Banuri49f14dd2015-10-21 15:54:59 +0530408 android:theme="@android:style/Theme.Material.Light"
Likai Ding253ebbd2013-08-20 16:21:57 +0800409 android:configChanges="orientation|keyboardHidden|screenSize|mnc|mcc">
410 </activity>
jinwu4fafa7a2017-04-07 13:27:48 +0800411 <activity android:name="com.android.gallery3d.app.dualcam3d.ThreeDimensionalActivity"
412 android:configChanges="orientation|screenSize|layoutDirection">
413 </activity>
Owen Linf9a0a432011-08-17 22:07:43 +0800414 </application>
415</manifest>