Chaohui Wang | 5c56587 | 2022-07-14 19:55:53 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | Copyright (C) 2022 The Android Open Source Project |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
Chaohui Wang | 76606cf | 2022-08-12 10:21:26 +0800 | [diff] [blame] | 16 | --> |
Chaohui Wang | 5c56587 | 2022-07-14 19:55:53 +0800 | [diff] [blame] | 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Chaohui Wang | 06337e4 | 2022-08-17 17:31:23 +0800 | [diff] [blame] | 18 | package="com.android.settingslib.spa.gallery"> |
Chaohui Wang | 5c56587 | 2022-07-14 19:55:53 +0800 | [diff] [blame] | 19 | |
Chaohui Wang | cc23089 | 2022-11-21 17:45:37 +0800 | [diff] [blame] | 20 | <uses-sdk android:minSdkVersion="21" /> |
Zekan Qian | 9c246c8d | 2022-10-18 19:16:38 +0800 | [diff] [blame] | 21 | |
Chaohui Wang | 5c56587 | 2022-07-14 19:55:53 +0800 | [diff] [blame] | 22 | <application |
Zekan Qian | 4e5beac | 2022-10-12 13:54:47 +0800 | [diff] [blame] | 23 | android:name=".GalleryApplication" |
Chaohui Wang | cc23089 | 2022-11-21 17:45:37 +0800 | [diff] [blame] | 24 | android:enableOnBackInvokedCallback="true" |
Chaohui Wang | 3c753d1 | 2022-08-19 14:52:30 +0800 | [diff] [blame] | 25 | android:icon="@mipmap/ic_launcher" |
| 26 | android:label="@string/app_label" |
Chaohui Wang | cc23089 | 2022-11-21 17:45:37 +0800 | [diff] [blame] | 27 | android:supportsRtl="true"> |
Chaohui Wang | 5c56587 | 2022-07-14 19:55:53 +0800 | [diff] [blame] | 28 | <activity |
Zekan Qian | 4e5beac | 2022-10-12 13:54:47 +0800 | [diff] [blame] | 29 | android:name=".GalleryMainActivity" |
Chaohui Wang | cc23089 | 2022-11-21 17:45:37 +0800 | [diff] [blame] | 30 | android:configChanges="orientation|screenLayout|screenSize|smallestScreenSize" |
Chaohui Wang | 5c56587 | 2022-07-14 19:55:53 +0800 | [diff] [blame] | 31 | android:exported="true"> |
| 32 | <intent-filter> |
| 33 | <action android:name="android.intent.action.MAIN" /> |
| 34 | <category android:name="android.intent.category.LAUNCHER" /> |
| 35 | </intent-filter> |
| 36 | </activity> |
Chaohui Wang | 5c56587 | 2022-07-14 19:55:53 +0800 | [diff] [blame] | 37 | |
Zekan Qian | 03bda34 | 2022-09-16 12:50:03 +0800 | [diff] [blame] | 38 | <provider |
Zekan Qian | 4826165 | 2022-11-28 17:12:20 +0800 | [diff] [blame] | 39 | android:name="com.android.settingslib.spa.search.SpaSearchProvider" |
Zekan Qian | 98b32e0 | 2022-11-10 16:32:13 +0800 | [diff] [blame] | 40 | android:authorities="com.android.spa.gallery.search.provider" |
Binyi Wu | 09d1d69 | 2022-12-12 17:46:53 +0800 | [diff] [blame] | 41 | android:exported="true" |
| 42 | android:grantUriPermissions="true" |
| 43 | android:permission="android.permission.READ_SEARCH_INDEXABLES"> |
| 44 | <intent-filter> |
| 45 | <action android:name="android.content.action.SPA_SEARCH_PROVIDER" /> |
| 46 | </intent-filter> |
Zekan Qian | 03bda34 | 2022-09-16 12:50:03 +0800 | [diff] [blame] | 47 | </provider> |
| 48 | |
Zekan Qian | 285690dc | 2022-10-19 15:24:15 +0800 | [diff] [blame] | 49 | <activity |
Zekan Qian | a8bbe12 | 2022-11-24 13:54:58 +0800 | [diff] [blame] | 50 | android:name="com.android.settingslib.spa.debug.BlankActivity" |
Zekan Qian | 285690dc | 2022-10-19 15:24:15 +0800 | [diff] [blame] | 51 | android:exported="true"> |
| 52 | </activity> |
| 53 | <activity |
Zekan Qian | a8bbe12 | 2022-11-24 13:54:58 +0800 | [diff] [blame] | 54 | android:name="com.android.settingslib.spa.debug.DebugActivity" |
Zekan Qian | 285690dc | 2022-10-19 15:24:15 +0800 | [diff] [blame] | 55 | android:exported="true"> |
| 56 | </activity> |
| 57 | <provider |
Zekan Qian | a8bbe12 | 2022-11-24 13:54:58 +0800 | [diff] [blame] | 58 | android:name="com.android.settingslib.spa.debug.DebugProvider" |
Zekan Qian | 98b32e0 | 2022-11-10 16:32:13 +0800 | [diff] [blame] | 59 | android:authorities="com.android.spa.gallery.debug.provider" |
Zekan Qian | 285690dc | 2022-10-19 15:24:15 +0800 | [diff] [blame] | 60 | android:exported="false"> |
| 61 | </provider> |
Charlotte Lu | 3d99bca | 2024-01-15 14:48:23 +0800 | [diff] [blame] | 62 | <activity |
Charlotte Lu | 7cb16ee | 2024-01-16 19:01:47 +0800 | [diff] [blame] | 63 | android:name="com.android.settingslib.spa.gallery.GalleryDialogActivity" |
Charlotte Lu | 3d99bca | 2024-01-15 14:48:23 +0800 | [diff] [blame] | 64 | android:exported="true" |
| 65 | android:theme="@style/Theme.SpaLib.Dialog"> |
| 66 | </activity> |
Zekan Qian | d3a94cf | 2022-09-08 16:13:53 +0800 | [diff] [blame] | 67 | </application> |
Chaohui Wang | 5c56587 | 2022-07-14 19:55:53 +0800 | [diff] [blame] | 68 | </manifest> |