blob: f89ff6e306c489df2ae3637e919f5feb6a9ccb67 [file] [log] [blame]
Santiago Etchebehere0c696912018-11-29 18:03:48 -08001<?xml version="1.0" encoding="utf-8"?>
Chris Poultney9054c132024-02-05 21:14:08 +00002
3<!-- The package name here must match the Studio namespace given in
4 WallpaperPickerGoogle gradle config for Studio builds to succeed.
5 `package_name` in Android.bp overrides this with the actual package name.
6 -->
Santiago Etchebehere0c696912018-11-29 18:03:48 -08007<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Santiago Etchebehereab639852019-02-26 10:42:44 -08008 xmlns:tools="http://schemas.android.com/tools"
Chris Poultney9054c132024-02-05 21:14:08 +00009 package="com.google.android.apps.wallpaper">
Santiago Etchebehere0c696912018-11-29 18:03:48 -080010
Santiago Etchebehere2790d742020-06-29 11:59:19 -070011 <uses-sdk android:targetSdkVersion="30" android:minSdkVersion="28"/>
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -080012
13 <uses-permission android:name="android.permission.CHANGE_OVERLAY_PACKAGES"/>
14 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
Santiago Etchebehere7a20a732019-04-22 18:13:12 -030015 <uses-permission android:name="android.permission.SET_WALLPAPER_COMPONENT" />
Santiago Etchebehere151e6c52022-09-30 22:00:51 +000016 <uses-permission android:name="android.permission.READ_DEVICE_CONFIG" />
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080017 <uses-permission android:name="android.permission.MODIFY_DAY_NIGHT_MODE" />
Alejandro Nijamkin6238c2e2022-12-24 08:11:52 -080018 <uses-permission android:name="android.permission.CUSTOMIZE_SYSTEM_UI" />
Edward Savage-Jonesd325f172022-05-13 00:49:59 +020019 <uses-permission android:name="android.permission.BIND_WALLPAPER"/>
20 <uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/>
21 <uses-permission android:name="android.permission.READ_WALLPAPER_INTERNAL"/>
22 <uses-permission android:name="android.permission.SET_WALLPAPER"/>
Catherine Liang297424a2023-12-20 19:07:19 +000023 <uses-permission android:name="android.permission.SET_WALLPAPER_DIM_AMOUNT" />
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080024
Ching-Sung Li336665b2021-04-13 21:14:09 +080025 <queries>
Edward Savage-Jonesd325f172022-05-13 00:49:59 +020026 <package android:name="android"/>
27 <package android:name="com.android.launcher3"/>
28 <package android:name="com.android.settings"/>
29 <package android:name="com.android.systemui"/>
30
Ching-Sung Li336665b2021-04-13 21:14:09 +080031 <!-- Specific intents Wallpaper picker query for -->
Kunhung Li7b10d5b2022-07-06 16:19:47 +080032 <!-- Package for theme stub -->
33 <package android:name="com.android.customization.themes" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080034 <!-- Intent filter with action SET_WALLPAPER -->
35 <intent>
36 <action android:name="android.intent.action.SET_WALLPAPER" />
37 </intent>
38 <!-- Intent filter with action GET_CONTENT and data's mimeType as "image/*" -->
39 <intent>
40 <action android:name="android.intent.action.GET_CONTENT" />
41 <data android:mimeType="image/*" />
42 </intent>
43 <!-- Intent filter with action VIEW -->
44 <intent>
45 <action android:name="android.intent.action.VIEW" />
Ching-Sung Li6b3e6b12021-08-16 09:35:16 +080046 <data android:scheme="http" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080047 </intent>
48 <!-- Intent filter with action WallpaperService (live wallpaper interface) -->
49 <intent>
50 <action android:name="android.service.wallpaper.WallpaperService" />
51 </intent>
52 <!-- Intent filter with action used to discover partner -->
53 <intent>
54 <action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION" />
55 </intent>
Santiago Etchebehere151e6c52022-09-30 22:00:51 +000056 <!-- Intent filter used to query the launcher Activity for grid preview metadata -->
57 <intent>
58 <action android:name="android.intent.action.MAIN" />
59 <category android:name="android.intent.category.HOME" />
60 </intent>
Ching-Sung Li336665b2021-04-13 21:14:09 +080061 </queries>
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -080062
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080063 <application
Hyunyoung Song472fcd12019-06-05 15:52:32 -070064 tools:replace="android:icon,android:name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080065 android:extractNativeLibs="false"
66 android:hardwareAccelerated="true"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070067 android:icon="@drawable/ic_home"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080068 android:label="@string/app_name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080069 android:requiredForAllUsers="true"
70 android:restoreAnyVersion="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080071 android:supportsRtl="true"
Santiago Etchebehereab639852019-02-26 10:42:44 -080072 android:name="com.android.customization.picker.CustomizationPickerApplication"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070073 android:theme="@style/CustomizationTheme">
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080074 <activity
Chihhang Chuangd2ece572021-06-17 22:40:26 +080075 tools:node="replace"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080076 android:name="com.android.wallpaper.picker.CustomizationPickerActivity"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080077 android:label="@string/app_name"
Ching-Sung Li304b04f2021-10-21 00:37:49 +080078 android:relinquishTaskIdentity="true"
Santiago Etchebehere742b8552019-11-07 14:25:20 -080079 android:resizeableActivity="false"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080080 android:theme="@style/CustomizationTheme.NoActionBar"
81 android:exported="false"/>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080082
Ching-Sung Li72bb9512022-04-13 21:58:12 +080083 <activity
84 tools:node="replace"
Catherine Liang2589caa2024-08-21 18:24:35 +000085 android:name="com.android.wallpaper.picker.customization.ui.CustomizationPickerActivity2"
86 android:label="@string/app_name"
87 android:relinquishTaskIdentity="true"
88 android:resizeableActivity="false"
89 android:theme="@style/WallpaperTheme"
90 android:configChanges="assetsPaths"
91 android:exported="false"/>
92
93 <activity
94 tools:node="replace"
Ching-Sung Li72bb9512022-04-13 21:58:12 +080095 android:name="com.android.wallpaper.picker.PassThroughCustomizationPickerActivity"
96 android:label="@string/app_name"
97 android:resizeableActivity="false"
98 android:theme="@style/CustomizationTheme.NoActionBar"
99 android:exported="false"/>
100
101 <activity
102 tools:node="replace"
103 android:name="com.android.wallpaper.picker.TrampolinePickerActivity"
104 android:label="@string/app_name"
105 android:relinquishTaskIdentity="true"
106 android:resizeableActivity="false"
107 android:theme="@style/CustomizationTheme.NoActionBar"
108 android:exported="false"/>
109
Chihhang Chuangeecf85e2021-06-14 13:48:57 +0800110 <activity-alias
111 android:name="com.android.customization.picker.CustomizationPickerActivity"
Ching-Sung Li72bb9512022-04-13 21:58:12 +0800112 android:targetActivity="com.android.wallpaper.picker.TrampolinePickerActivity"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +0800113 android:label="@string/app_name"
114 android:exported="true">
115 <intent-filter>
116 <action android:name="android.intent.action.SET_WALLPAPER"/>
117 <category android:name="android.intent.category.DEFAULT"/>
118 </intent-filter>
119 </activity-alias>
120
Santiago Etchebeherecca6d492018-12-04 18:29:48 -0800121 </application>
Santiago Etchebehere0c696912018-11-29 18:03:48 -0800122</manifest>