blob: a86d70abdb3aa0b68c042b8d8648f25b4cb0672f [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 Lin0b670292021-10-05 22:40:58 -070011 <uses-permission android:name="android.permission.BIND_WALLPAPER" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080012
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080013 <uses-permission android:name="android.permission.MODIFY_DAY_NIGHT_MODE" />
14
Ching-Sung Li336665b2021-04-13 21:14:09 +080015 <queries>
16 <!-- Specific intents Wallpaper picker query for -->
17 <!-- Intent filter with action SET_WALLPAPER -->
18 <intent>
19 <action android:name="android.intent.action.SET_WALLPAPER" />
20 </intent>
21 <!-- Intent filter with action GET_CONTENT and data's mimeType as "image/*" -->
22 <intent>
23 <action android:name="android.intent.action.GET_CONTENT" />
24 <data android:mimeType="image/*" />
25 </intent>
26 <!-- Intent filter with action VIEW -->
27 <intent>
28 <action android:name="android.intent.action.VIEW" />
Ching-Sung Li6b3e6b12021-08-16 09:35:16 +080029 <data android:scheme="http" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080030 </intent>
31 <!-- Intent filter with action WallpaperService (live wallpaper interface) -->
32 <intent>
33 <action android:name="android.service.wallpaper.WallpaperService" />
34 </intent>
35 <!-- Intent filter with action used to discover partner -->
36 <intent>
37 <action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION" />
38 </intent>
Danny Lin14584d02021-10-05 19:12:40 -070039 <!-- Intent filter with action used to discover launcher -->
40 <intent>
41 <action android:name="android.intent.action.MAIN" />
42 <category android:name="android.intent.category.HOME" />
43 </intent>
Ching-Sung Li336665b2021-04-13 21:14:09 +080044 </queries>
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -080045
Luca Stefani3c4e2e32019-11-01 23:17:08 +010046 <uses-permission android:name="com.android.launcher3.permission.READ_SETTINGS" />
47 <uses-permission android:name="com.android.launcher3.permission.WRITE_SETTINGS" />
48
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080049 <application
Hyunyoung Song472fcd12019-06-05 15:52:32 -070050 tools:replace="android:icon,android:name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080051 android:extractNativeLibs="false"
52 android:hardwareAccelerated="true"
Asher Simondsa885d382022-04-06 21:51:58 +020053 android:icon="@mipmap/ic_launcher"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080054 android:label="@string/app_name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080055 android:requiredForAllUsers="true"
56 android:restoreAnyVersion="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080057 android:supportsRtl="true"
Santiago Etchebehereab639852019-02-26 10:42:44 -080058 android:name="com.android.customization.picker.CustomizationPickerApplication"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070059 android:theme="@style/CustomizationTheme">
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080060 <activity
Chihhang Chuangd2ece572021-06-17 22:40:26 +080061 tools:node="replace"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080062 android:name="com.android.wallpaper.picker.CustomizationPickerActivity"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080063 android:label="@string/app_name"
Ching-Sung Li917945d2021-10-21 00:37:49 +080064 android:relinquishTaskIdentity="true"
Santiago Etchebehere742b8552019-11-07 14:25:20 -080065 android:resizeableActivity="false"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080066 android:theme="@style/CustomizationTheme.NoActionBar"
67 android:exported="false"/>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080068
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080069 <activity-alias
70 android:name="com.android.customization.picker.CustomizationPickerActivity"
71 android:targetActivity="com.android.wallpaper.picker.CustomizationPickerActivity"
72 android:label="@string/app_name"
73 android:exported="true">
74 <intent-filter>
75 <action android:name="android.intent.action.SET_WALLPAPER"/>
76 <category android:name="android.intent.category.DEFAULT"/>
77 </intent-filter>
78 </activity-alias>
79
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080080 </application>
Santiago Etchebehere0c696912018-11-29 18:03:48 -080081</manifest>