blob: 26453609fc43ea67489d105c643abf36285fa4ca [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
Chaohui Wangcc230892022-11-21 17:45:37 +080020 <uses-sdk android:minSdkVersion="21" />
Zekan Qian9c246c8d2022-10-18 19:16:38 +080021
Chaohui Wang5c565872022-07-14 19:55:53 +080022 <application
Zekan Qian4e5beac2022-10-12 13:54:47 +080023 android:name=".GalleryApplication"
Chaohui Wangcc230892022-11-21 17:45:37 +080024 android:enableOnBackInvokedCallback="true"
Chaohui Wang3c753d12022-08-19 14:52:30 +080025 android:icon="@mipmap/ic_launcher"
26 android:label="@string/app_label"
Chaohui Wangcc230892022-11-21 17:45:37 +080027 android:supportsRtl="true">
Chaohui Wang5c565872022-07-14 19:55:53 +080028 <activity
Zekan Qian4e5beac2022-10-12 13:54:47 +080029 android:name=".GalleryMainActivity"
Chaohui Wangcc230892022-11-21 17:45:37 +080030 android:configChanges="orientation|screenLayout|screenSize|smallestScreenSize"
Chaohui Wang5c565872022-07-14 19:55:53 +080031 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 Wang5c565872022-07-14 19:55:53 +080037
Zekan Qian03bda342022-09-16 12:50:03 +080038 <provider
Zekan Qian48261652022-11-28 17:12:20 +080039 android:name="com.android.settingslib.spa.search.SpaSearchProvider"
Zekan Qian98b32e02022-11-10 16:32:13 +080040 android:authorities="com.android.spa.gallery.search.provider"
Binyi Wu09d1d692022-12-12 17:46:53 +080041 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 Qian03bda342022-09-16 12:50:03 +080047 </provider>
48
Zekan Qian285690dc2022-10-19 15:24:15 +080049 <activity
Zekan Qiana8bbe122022-11-24 13:54:58 +080050 android:name="com.android.settingslib.spa.debug.BlankActivity"
Zekan Qian285690dc2022-10-19 15:24:15 +080051 android:exported="true">
52 </activity>
53 <activity
Zekan Qiana8bbe122022-11-24 13:54:58 +080054 android:name="com.android.settingslib.spa.debug.DebugActivity"
Zekan Qian285690dc2022-10-19 15:24:15 +080055 android:exported="true">
56 </activity>
57 <provider
Zekan Qiana8bbe122022-11-24 13:54:58 +080058 android:name="com.android.settingslib.spa.debug.DebugProvider"
Zekan Qian98b32e02022-11-10 16:32:13 +080059 android:authorities="com.android.spa.gallery.debug.provider"
Zekan Qian285690dc2022-10-19 15:24:15 +080060 android:exported="false">
61 </provider>
Charlotte Lu3d99bca2024-01-15 14:48:23 +080062 <activity
Charlotte Lu7cb16ee2024-01-16 19:01:47 +080063 android:name="com.android.settingslib.spa.gallery.GalleryDialogActivity"
Charlotte Lu3d99bca2024-01-15 14:48:23 +080064 android:exported="true"
65 android:theme="@style/Theme.SpaLib.Dialog">
66 </activity>
Zekan Qiand3a94cf2022-09-08 16:13:53 +080067 </application>
Chaohui Wang5c565872022-07-14 19:55:53 +080068</manifest>