blob: de4737c81364d0614eb38d11ccb7ed02882c7b7a [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"/>
Catherine Liang297424a2023-12-20 19:07:19 +000018 <uses-permission android:name="android.permission.SET_WALLPAPER_DIM_AMOUNT" />
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080019
Ching-Sung Li336665b2021-04-13 21:14:09 +080020 <queries>
Edward Savage-Jonesd325f172022-05-13 00:49:59 +020021 <package android:name="android"/>
22 <package android:name="com.android.launcher3"/>
23 <package android:name="com.android.settings"/>
24 <package android:name="com.android.systemui"/>
25
Ching-Sung Li336665b2021-04-13 21:14:09 +080026 <!-- Specific intents Wallpaper picker query for -->
Kunhung Li7b10d5b2022-07-06 16:19:47 +080027 <!-- Package for theme stub -->
28 <package android:name="com.android.customization.themes" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080029 <!-- Intent filter with action SET_WALLPAPER -->
30 <intent>
31 <action android:name="android.intent.action.SET_WALLPAPER" />
32 </intent>
33 <!-- Intent filter with action GET_CONTENT and data's mimeType as "image/*" -->
34 <intent>
35 <action android:name="android.intent.action.GET_CONTENT" />
36 <data android:mimeType="image/*" />
37 </intent>
38 <!-- Intent filter with action VIEW -->
39 <intent>
40 <action android:name="android.intent.action.VIEW" />
Ching-Sung Li6b3e6b12021-08-16 09:35:16 +080041 <data android:scheme="http" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080042 </intent>
43 <!-- Intent filter with action WallpaperService (live wallpaper interface) -->
44 <intent>
45 <action android:name="android.service.wallpaper.WallpaperService" />
46 </intent>
47 <!-- Intent filter with action used to discover partner -->
48 <intent>
49 <action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION" />
50 </intent>
Santiago Etchebehere151e6c52022-09-30 22:00:51 +000051 <!-- Intent filter used to query the launcher Activity for grid preview metadata -->
52 <intent>
53 <action android:name="android.intent.action.MAIN" />
54 <category android:name="android.intent.category.HOME" />
55 </intent>
Ching-Sung Li336665b2021-04-13 21:14:09 +080056 </queries>
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -080057
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080058 <application
Hyunyoung Song472fcd12019-06-05 15:52:32 -070059 tools:replace="android:icon,android:name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080060 android:extractNativeLibs="false"
61 android:hardwareAccelerated="true"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070062 android:icon="@drawable/ic_home"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080063 android:label="@string/app_name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080064 android:requiredForAllUsers="true"
65 android:restoreAnyVersion="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080066 android:supportsRtl="true"
Santiago Etchebehereab639852019-02-26 10:42:44 -080067 android:name="com.android.customization.picker.CustomizationPickerApplication"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070068 android:theme="@style/CustomizationTheme">
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080069 <activity
Chihhang Chuangd2ece572021-06-17 22:40:26 +080070 tools:node="replace"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080071 android:name="com.android.wallpaper.picker.CustomizationPickerActivity"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080072 android:label="@string/app_name"
Ching-Sung Li304b04f2021-10-21 00:37:49 +080073 android:relinquishTaskIdentity="true"
Santiago Etchebehere742b8552019-11-07 14:25:20 -080074 android:resizeableActivity="false"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080075 android:theme="@style/CustomizationTheme.NoActionBar"
76 android:exported="false"/>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080077
Ching-Sung Li72bb9512022-04-13 21:58:12 +080078 <activity
79 tools:node="replace"
80 android:name="com.android.wallpaper.picker.PassThroughCustomizationPickerActivity"
81 android:label="@string/app_name"
82 android:resizeableActivity="false"
83 android:theme="@style/CustomizationTheme.NoActionBar"
84 android:exported="false"/>
85
86 <activity
87 tools:node="replace"
88 android:name="com.android.wallpaper.picker.TrampolinePickerActivity"
89 android:label="@string/app_name"
90 android:relinquishTaskIdentity="true"
91 android:resizeableActivity="false"
92 android:theme="@style/CustomizationTheme.NoActionBar"
93 android:exported="false"/>
94
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080095 <activity-alias
96 android:name="com.android.customization.picker.CustomizationPickerActivity"
Ching-Sung Li72bb9512022-04-13 21:58:12 +080097 android:targetActivity="com.android.wallpaper.picker.TrampolinePickerActivity"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080098 android:label="@string/app_name"
99 android:exported="true">
100 <intent-filter>
101 <action android:name="android.intent.action.SET_WALLPAPER"/>
102 <category android:name="android.intent.category.DEFAULT"/>
103 </intent-filter>
104 </activity-alias>
105
Santiago Etchebeherecca6d492018-12-04 18:29:48 -0800106 </application>
Santiago Etchebehere0c696912018-11-29 18:03:48 -0800107</manifest>