blob: ee96ae396be0b9224d7db57835e4b9f249fee4b8 [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 -->
Kunhung Li7b10d5b2022-07-06 16:19:47 +080016 <!-- Package for theme stub -->
17 <package android:name="com.android.customization.themes" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080018 <!-- Intent filter with action SET_WALLPAPER -->
19 <intent>
20 <action android:name="android.intent.action.SET_WALLPAPER" />
21 </intent>
22 <!-- Intent filter with action GET_CONTENT and data's mimeType as "image/*" -->
23 <intent>
24 <action android:name="android.intent.action.GET_CONTENT" />
25 <data android:mimeType="image/*" />
26 </intent>
27 <!-- Intent filter with action VIEW -->
28 <intent>
29 <action android:name="android.intent.action.VIEW" />
Ching-Sung Li6b3e6b12021-08-16 09:35:16 +080030 <data android:scheme="http" />
Ching-Sung Li336665b2021-04-13 21:14:09 +080031 </intent>
32 <!-- Intent filter with action WallpaperService (live wallpaper interface) -->
33 <intent>
34 <action android:name="android.service.wallpaper.WallpaperService" />
35 </intent>
36 <!-- Intent filter with action used to discover partner -->
37 <intent>
38 <action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION" />
39 </intent>
40 </queries>
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -080041
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080042 <application
Hyunyoung Song472fcd12019-06-05 15:52:32 -070043 tools:replace="android:icon,android:name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080044 android:extractNativeLibs="false"
45 android:hardwareAccelerated="true"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070046 android:icon="@drawable/ic_home"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080047 android:label="@string/app_name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080048 android:requiredForAllUsers="true"
49 android:restoreAnyVersion="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080050 android:supportsRtl="true"
Santiago Etchebehereab639852019-02-26 10:42:44 -080051 android:name="com.android.customization.picker.CustomizationPickerApplication"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070052 android:theme="@style/CustomizationTheme">
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080053 <activity
Chihhang Chuangd2ece572021-06-17 22:40:26 +080054 tools:node="replace"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080055 android:name="com.android.wallpaper.picker.CustomizationPickerActivity"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080056 android:label="@string/app_name"
Ching-Sung Li304b04f2021-10-21 00:37:49 +080057 android:relinquishTaskIdentity="true"
Santiago Etchebehere742b8552019-11-07 14:25:20 -080058 android:resizeableActivity="false"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080059 android:theme="@style/CustomizationTheme.NoActionBar"
60 android:exported="false"/>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080061
Ching-Sung Li72bb9512022-04-13 21:58:12 +080062 <activity
63 tools:node="replace"
64 android:name="com.android.wallpaper.picker.PassThroughCustomizationPickerActivity"
65 android:label="@string/app_name"
66 android:resizeableActivity="false"
67 android:theme="@style/CustomizationTheme.NoActionBar"
68 android:exported="false"/>
69
70 <activity
71 tools:node="replace"
72 android:name="com.android.wallpaper.picker.TrampolinePickerActivity"
73 android:label="@string/app_name"
74 android:relinquishTaskIdentity="true"
75 android:resizeableActivity="false"
76 android:theme="@style/CustomizationTheme.NoActionBar"
77 android:exported="false"/>
78
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080079 <activity-alias
80 android:name="com.android.customization.picker.CustomizationPickerActivity"
Ching-Sung Li72bb9512022-04-13 21:58:12 +080081 android:targetActivity="com.android.wallpaper.picker.TrampolinePickerActivity"
Chihhang Chuangeecf85e2021-06-14 13:48:57 +080082 android:label="@string/app_name"
83 android:exported="true">
84 <intent-filter>
85 <action android:name="android.intent.action.SET_WALLPAPER"/>
86 <category android:name="android.intent.category.DEFAULT"/>
87 </intent-filter>
88 </activity-alias>
89
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080090 </application>
Santiago Etchebehere0c696912018-11-29 18:03:48 -080091</manifest>