blob: ff8f187d9488a2a5af313f327d698f88ae1a956c [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" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080011
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080012 <uses-permission android:name="android.permission.MODIFY_DAY_NIGHT_MODE" />
13
Ching-Sung Li336665b2021-04-13 21:14:09 +080014 <queries>
15 <!-- Specific intents Wallpaper picker query for -->
16 <!-- Intent filter with action SET_WALLPAPER -->
17 <intent>
18 <action android:name="android.intent.action.SET_WALLPAPER" />
19 </intent>
20 <!-- Intent filter with action GET_CONTENT and data's mimeType as "image/*" -->
21 <intent>
22 <action android:name="android.intent.action.GET_CONTENT" />
23 <data android:mimeType="image/*" />
24 </intent>
25 <!-- Intent filter with action VIEW -->
26 <intent>
27 <action android:name="android.intent.action.VIEW" />
Ching-Sung Li6b3e6b12021-08-16 09:35:16 +080028 <data android:scheme="http" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080029 </intent>
30 <!-- Intent filter with action WallpaperService (live wallpaper interface) -->
31 <intent>
32 <action android:name="android.service.wallpaper.WallpaperService" />
33 </intent>
34 <!-- Intent filter with action used to discover partner -->
35 <intent>
36 <action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION" />
37 </intent>
38 </queries>
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -080039
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080040 <application
Hyunyoung Song472fcd12019-06-05 15:52:32 -070041 tools:replace="android:icon,android:name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080042 android:extractNativeLibs="false"
43 android:hardwareAccelerated="true"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070044 android:icon="@drawable/ic_home"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080045 android:label="@string/app_name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080046 android:requiredForAllUsers="true"
47 android:restoreAnyVersion="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080048 android:supportsRtl="true"
Santiago Etchebehereab639852019-02-26 10:42:44 -080049 android:name="com.android.customization.picker.CustomizationPickerApplication"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070050 android:theme="@style/CustomizationTheme">
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080051 <activity
Chihhang Chuangd2ece572021-06-17 22:40:26 +080052 tools:node="replace"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080053 android:name="com.android.wallpaper.picker.CustomizationPickerActivity"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080054 android:label="@string/app_name"
Ching-Sung Li304b04f2021-10-21 00:37:49 +080055 android:relinquishTaskIdentity="true"
Santiago Etchebehere742b8552019-11-07 14:25:20 -080056 android:resizeableActivity="false"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080057 android:theme="@style/CustomizationTheme.NoActionBar"
58 android:exported="false"/>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080059
Ching-Sung Li72bb9512022-04-13 21:58:12 +080060 <activity
61 tools:node="replace"
62 android:name="com.android.wallpaper.picker.PassThroughCustomizationPickerActivity"
63 android:label="@string/app_name"
64 android:resizeableActivity="false"
65 android:theme="@style/CustomizationTheme.NoActionBar"
66 android:exported="false"/>
67
68 <activity
69 tools:node="replace"
70 android:name="com.android.wallpaper.picker.TrampolinePickerActivity"
71 android:label="@string/app_name"
72 android:relinquishTaskIdentity="true"
73 android:resizeableActivity="false"
74 android:theme="@style/CustomizationTheme.NoActionBar"
75 android:exported="false"/>
76
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080077 <activity-alias
78 android:name="com.android.customization.picker.CustomizationPickerActivity"
Ching-Sung Li72bb9512022-04-13 21:58:12 +080079 android:targetActivity="com.android.wallpaper.picker.TrampolinePickerActivity"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080080 android:label="@string/app_name"
81 android:exported="true">
82 <intent-filter>
83 <action android:name="android.intent.action.SET_WALLPAPER"/>
84 <category android:name="android.intent.category.DEFAULT"/>
85 </intent-filter>
86 </activity-alias>
87
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080088 </application>
Santiago Etchebehere0c696912018-11-29 18:03:48 -080089</manifest>