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 | |
Zekan Qian | 9c246c8d | 2022-10-18 19:16:38 +0800 | [diff] [blame] | 20 | <uses-sdk android:minSdkVersion="21"/> |
| 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 | 3c753d1 | 2022-08-19 14:52:30 +0800 | [diff] [blame] | 24 | android:icon="@mipmap/ic_launcher" |
| 25 | android:label="@string/app_label" |
Chaohui Wang | 098ecd9 | 2022-09-14 15:45:39 +0800 | [diff] [blame] | 26 | android:supportsRtl="true" |
| 27 | android:enableOnBackInvokedCallback="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 | 5c56587 | 2022-07-14 19:55:53 +0800 | [diff] [blame] | 30 | android:exported="true"> |
| 31 | <intent-filter> |
| 32 | <action android:name="android.intent.action.MAIN" /> |
| 33 | <category android:name="android.intent.category.LAUNCHER" /> |
| 34 | </intent-filter> |
| 35 | </activity> |
Chaohui Wang | 5c56587 | 2022-07-14 19:55:53 +0800 | [diff] [blame] | 36 | |
Zekan Qian | 03bda34 | 2022-09-16 12:50:03 +0800 | [diff] [blame] | 37 | <provider |
| 38 | android:name=".GalleryEntryProvider" |
| 39 | android:authorities="com.android.spa.gallery.provider" |
| 40 | android:enabled="true" |
| 41 | android:exported="false"> |
| 42 | </provider> |
| 43 | |
Zekan Qian | 285690dc | 2022-10-19 15:24:15 +0800 | [diff] [blame^] | 44 | <activity |
| 45 | android:name="com.android.settingslib.spa.framework.debug.BlankActivity" |
| 46 | android:exported="true"> |
| 47 | </activity> |
| 48 | <activity |
| 49 | android:name="com.android.settingslib.spa.framework.debug.DebugActivity" |
| 50 | android:exported="true"> |
| 51 | </activity> |
| 52 | <provider |
| 53 | android:name="com.android.settingslib.spa.framework.debug.DebugProvider" |
| 54 | android:authorities="com.android.spa.gallery.debug" |
| 55 | android:enabled="true" |
| 56 | android:exported="false"> |
| 57 | </provider> |
| 58 | |
Zekan Qian | d3a94cf | 2022-09-08 16:13:53 +0800 | [diff] [blame] | 59 | </application> |
Chaohui Wang | 5c56587 | 2022-07-14 19:55:53 +0800 | [diff] [blame] | 60 | </manifest> |