blob: f1a24aff4319a130df5412e724c74ae896eb316e [file] [log] [blame]
Chaohui Wang5c565872022-07-14 19:55:53 +08001<?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 Wang76606cf2022-08-12 10:21:26 +080016-->
Chaohui Wang5c565872022-07-14 19:55:53 +080017<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Chaohui Wang06337e42022-08-17 17:31:23 +080018 package="com.android.settingslib.spa.gallery">
Chaohui Wang5c565872022-07-14 19:55:53 +080019
Zekan Qian9c246c8d2022-10-18 19:16:38 +080020 <uses-sdk android:minSdkVersion="21"/>
21
Chaohui Wang5c565872022-07-14 19:55:53 +080022 <application
Zekan Qian4e5beac2022-10-12 13:54:47 +080023 android:name=".GalleryApplication"
Chaohui Wang3c753d12022-08-19 14:52:30 +080024 android:icon="@mipmap/ic_launcher"
25 android:label="@string/app_label"
Chaohui Wang098ecd92022-09-14 15:45:39 +080026 android:supportsRtl="true"
27 android:enableOnBackInvokedCallback="true">
Chaohui Wang5c565872022-07-14 19:55:53 +080028 <activity
Zekan Qian4e5beac2022-10-12 13:54:47 +080029 android:name=".GalleryMainActivity"
Chaohui Wang5c565872022-07-14 19:55:53 +080030 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 Wang5c565872022-07-14 19:55:53 +080036
Zekan Qian03bda342022-09-16 12:50:03 +080037 <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 Qian285690dc2022-10-19 15:24:15 +080044 <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 Qiand3a94cf2022-09-08 16:13:53 +080059 </application>
Chaohui Wang5c565872022-07-14 19:55:53 +080060</manifest>