blob: 69692260838042e79e0ca9b1c1f923820470aa31 [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" />
Danny Lin6ccc8142021-10-05 22:40:58 -070011 <uses-permission android:name="android.permission.BIND_WALLPAPER" />
Santiago Etchebehere151e6c52022-09-30 22:00:51 +000012 <uses-permission android:name="android.permission.READ_DEVICE_CONFIG" />
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080013 <uses-permission android:name="android.permission.MODIFY_DAY_NIGHT_MODE" />
Alejandro Nijamkin6238c2e2022-12-24 08:11:52 -080014 <uses-permission android:name="android.permission.CUSTOMIZE_SYSTEM_UI" />
Anay Wadherab6aad8f2021-12-28 19:34:15 +090015 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080016
Ching-Sung Li336665b2021-04-13 21:14:09 +080017 <queries>
18 <!-- Specific intents Wallpaper picker query for -->
Kunhung Li7b10d5b2022-07-06 16:19:47 +080019 <!-- Package for theme stub -->
20 <package android:name="com.android.customization.themes" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080021 <!-- Intent filter with action SET_WALLPAPER -->
22 <intent>
23 <action android:name="android.intent.action.SET_WALLPAPER" />
24 </intent>
25 <!-- Intent filter with action GET_CONTENT and data's mimeType as "image/*" -->
26 <intent>
27 <action android:name="android.intent.action.GET_CONTENT" />
28 <data android:mimeType="image/*" />
29 </intent>
30 <!-- Intent filter with action VIEW -->
31 <intent>
32 <action android:name="android.intent.action.VIEW" />
Ching-Sung Li6b3e6b12021-08-16 09:35:16 +080033 <data android:scheme="http" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080034 </intent>
35 <!-- Intent filter with action WallpaperService (live wallpaper interface) -->
36 <intent>
37 <action android:name="android.service.wallpaper.WallpaperService" />
38 </intent>
39 <!-- Intent filter with action used to discover partner -->
40 <intent>
41 <action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION" />
42 </intent>
Santiago Etchebehere151e6c52022-09-30 22:00:51 +000043 <!-- Intent filter used to query the launcher Activity for grid preview metadata -->
Danny Linac21d322021-10-05 19:12:40 -070044 <intent>
45 <action android:name="android.intent.action.MAIN" />
46 <category android:name="android.intent.category.HOME" />
47 </intent>
Ching-Sung Li336665b2021-04-13 21:14:09 +080048 </queries>
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -080049
Luca Stefanib4bb3132019-11-01 23:17:08 +010050 <uses-permission android:name="com.android.launcher3.permission.READ_SETTINGS" />
51 <uses-permission android:name="com.android.launcher3.permission.WRITE_SETTINGS" />
52
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080053 <application
Hyunyoung Song472fcd12019-06-05 15:52:32 -070054 tools:replace="android:icon,android:name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080055 android:extractNativeLibs="false"
56 android:hardwareAccelerated="true"
Asher Simonds5f7f51e2022-04-06 21:51:58 +020057 android:icon="@mipmap/ic_launcher"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080058 android:label="@string/app_name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080059 android:requiredForAllUsers="true"
60 android:restoreAnyVersion="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080061 android:supportsRtl="true"
Santiago Etchebehereab639852019-02-26 10:42:44 -080062 android:name="com.android.customization.picker.CustomizationPickerApplication"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070063 android:theme="@style/CustomizationTheme">
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080064 <activity
Chihhang Chuangd2ece572021-06-17 22:40:26 +080065 tools:node="replace"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080066 android:name="com.android.wallpaper.picker.CustomizationPickerActivity"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080067 android:label="@string/app_name"
Ching-Sung Li304b04f2021-10-21 00:37:49 +080068 android:relinquishTaskIdentity="true"
Santiago Etchebehere742b8552019-11-07 14:25:20 -080069 android:resizeableActivity="false"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080070 android:theme="@style/CustomizationTheme.NoActionBar"
71 android:exported="false"/>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080072
Ching-Sung Li72bb9512022-04-13 21:58:12 +080073 <activity
74 tools:node="replace"
75 android:name="com.android.wallpaper.picker.PassThroughCustomizationPickerActivity"
76 android:label="@string/app_name"
77 android:resizeableActivity="false"
78 android:theme="@style/CustomizationTheme.NoActionBar"
79 android:exported="false"/>
80
81 <activity
82 tools:node="replace"
83 android:name="com.android.wallpaper.picker.TrampolinePickerActivity"
84 android:label="@string/app_name"
85 android:relinquishTaskIdentity="true"
86 android:resizeableActivity="false"
87 android:theme="@style/CustomizationTheme.NoActionBar"
88 android:exported="false"/>
89
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080090 <activity-alias
91 android:name="com.android.customization.picker.CustomizationPickerActivity"
Ching-Sung Li72bb9512022-04-13 21:58:12 +080092 android:targetActivity="com.android.wallpaper.picker.TrampolinePickerActivity"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080093 android:label="@string/app_name"
94 android:exported="true">
95 <intent-filter>
96 <action android:name="android.intent.action.SET_WALLPAPER"/>
97 <category android:name="android.intent.category.DEFAULT"/>
98 </intent-filter>
99 </activity-alias>
100
Santiago Etchebeherecca6d492018-12-04 18:29:48 -0800101 </application>
Santiago Etchebehere0c696912018-11-29 18:03:48 -0800102</manifest>