blob: b8126e557f724319f553f13bfbf969aff0dc54c8 [file] [log] [blame]
Santiago Etchebehere0c696912018-11-29 18:03:48 -08001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Santiago Etchebehereab639852019-02-26 10:42:44 -08003 xmlns:tools="http://schemas.android.com/tools"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -08004 package="com.android.wallpaper">
Santiago Etchebehere0c696912018-11-29 18:03:48 -08005
Santiago Etchebehere2790d742020-06-29 11:59:19 -07006 <uses-sdk android:targetSdkVersion="30" android:minSdkVersion="28"/>
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -08007
8 <uses-permission android:name="android.permission.CHANGE_OVERLAY_PACKAGES"/>
9 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
Santiago Etchebehere7a20a732019-04-22 18:13:12 -030010 <uses-permission android:name="android.permission.SET_WALLPAPER_COMPONENT" />
Santiago Etchebehere151e6c52022-09-30 22:00:51 +000011 <uses-permission android:name="android.permission.READ_DEVICE_CONFIG" />
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080012 <uses-permission android:name="android.permission.MODIFY_DAY_NIGHT_MODE" />
Alejandro Nijamkin6238c2e2022-12-24 08:11:52 -080013 <uses-permission android:name="android.permission.CUSTOMIZE_SYSTEM_UI" />
Edward Savage-Jonesd325f172022-05-13 00:49:59 +020014 <uses-permission android:name="android.permission.BIND_WALLPAPER"/>
15 <uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/>
16 <uses-permission android:name="android.permission.READ_WALLPAPER_INTERNAL"/>
17 <uses-permission android:name="android.permission.SET_WALLPAPER"/>
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080018
Ching-Sung Li336665b2021-04-13 21:14:09 +080019 <queries>
Edward Savage-Jonesd325f172022-05-13 00:49:59 +020020 <package android:name="android"/>
21 <package android:name="com.android.launcher3"/>
22 <package android:name="com.android.settings"/>
23 <package android:name="com.android.systemui"/>
24
Ching-Sung Li336665b2021-04-13 21:14:09 +080025 <!-- Specific intents Wallpaper picker query for -->
Kunhung Li7b10d5b2022-07-06 16:19:47 +080026 <!-- Package for theme stub -->
27 <package android:name="com.android.customization.themes" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080028 <!-- Intent filter with action SET_WALLPAPER -->
29 <intent>
30 <action android:name="android.intent.action.SET_WALLPAPER" />
31 </intent>
32 <!-- Intent filter with action GET_CONTENT and data's mimeType as "image/*" -->
33 <intent>
34 <action android:name="android.intent.action.GET_CONTENT" />
35 <data android:mimeType="image/*" />
36 </intent>
37 <!-- Intent filter with action VIEW -->
38 <intent>
39 <action android:name="android.intent.action.VIEW" />
Ching-Sung Li6b3e6b12021-08-16 09:35:16 +080040 <data android:scheme="http" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080041 </intent>
42 <!-- Intent filter with action WallpaperService (live wallpaper interface) -->
43 <intent>
44 <action android:name="android.service.wallpaper.WallpaperService" />
45 </intent>
46 <!-- Intent filter with action used to discover partner -->
47 <intent>
48 <action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION" />
49 </intent>
Santiago Etchebehere151e6c52022-09-30 22:00:51 +000050 <!-- Intent filter used to query the launcher Activity for grid preview metadata -->
51 <intent>
52 <action android:name="android.intent.action.MAIN" />
53 <category android:name="android.intent.category.HOME" />
54 </intent>
Ching-Sung Li336665b2021-04-13 21:14:09 +080055 </queries>
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -080056
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080057 <application
Hyunyoung Song472fcd12019-06-05 15:52:32 -070058 tools:replace="android:icon,android:name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080059 android:extractNativeLibs="false"
60 android:hardwareAccelerated="true"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070061 android:icon="@drawable/ic_home"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080062 android:label="@string/app_name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080063 android:requiredForAllUsers="true"
64 android:restoreAnyVersion="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080065 android:supportsRtl="true"
Santiago Etchebehereab639852019-02-26 10:42:44 -080066 android:name="com.android.customization.picker.CustomizationPickerApplication"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070067 android:theme="@style/CustomizationTheme">
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080068 <activity
Chihhang Chuangd2ece572021-06-17 22:40:26 +080069 tools:node="replace"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080070 android:name="com.android.wallpaper.picker.CustomizationPickerActivity"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080071 android:label="@string/app_name"
Ching-Sung Li304b04f2021-10-21 00:37:49 +080072 android:relinquishTaskIdentity="true"
Santiago Etchebehere742b8552019-11-07 14:25:20 -080073 android:resizeableActivity="false"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080074 android:theme="@style/CustomizationTheme.NoActionBar"
75 android:exported="false"/>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080076
Ching-Sung Li72bb9512022-04-13 21:58:12 +080077 <activity
78 tools:node="replace"
79 android:name="com.android.wallpaper.picker.PassThroughCustomizationPickerActivity"
80 android:label="@string/app_name"
81 android:resizeableActivity="false"
82 android:theme="@style/CustomizationTheme.NoActionBar"
83 android:exported="false"/>
84
85 <activity
86 tools:node="replace"
87 android:name="com.android.wallpaper.picker.TrampolinePickerActivity"
88 android:label="@string/app_name"
89 android:relinquishTaskIdentity="true"
90 android:resizeableActivity="false"
91 android:theme="@style/CustomizationTheme.NoActionBar"
92 android:exported="false"/>
93
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080094 <activity-alias
95 android:name="com.android.customization.picker.CustomizationPickerActivity"
Ching-Sung Li72bb9512022-04-13 21:58:12 +080096 android:targetActivity="com.android.wallpaper.picker.TrampolinePickerActivity"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080097 android:label="@string/app_name"
98 android:exported="true">
99 <intent-filter>
100 <action android:name="android.intent.action.SET_WALLPAPER"/>
101 <category android:name="android.intent.category.DEFAULT"/>
102 </intent-filter>
103 </activity-alias>
104
Santiago Etchebeherecca6d492018-12-04 18:29:48 -0800105 </application>
Santiago Etchebehere0c696912018-11-29 18:03:48 -0800106</manifest>