blob: 68eb4be7fc29bf986a5fd9ae85cc8baff6f2e646 [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
12 <queries>
13 <!-- Specific intents Wallpaper picker query for -->
14 <!-- Intent filter with action SET_WALLPAPER -->
15 <intent>
16 <action android:name="android.intent.action.SET_WALLPAPER" />
17 </intent>
18 <!-- Intent filter with action GET_CONTENT and data's mimeType as "image/*" -->
19 <intent>
20 <action android:name="android.intent.action.GET_CONTENT" />
21 <data android:mimeType="image/*" />
22 </intent>
23 <!-- Intent filter with action VIEW -->
24 <intent>
25 <action android:name="android.intent.action.VIEW" />
26 </intent>
27 <!-- Intent filter with action WallpaperService (live wallpaper interface) -->
28 <intent>
29 <action android:name="android.service.wallpaper.WallpaperService" />
30 </intent>
31 <!-- Intent filter with action used to discover partner -->
32 <intent>
33 <action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION" />
34 </intent>
35 </queries>
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -080036
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080037 <application
Hyunyoung Song472fcd12019-06-05 15:52:32 -070038 tools:replace="android:icon,android:name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080039 android:extractNativeLibs="false"
40 android:hardwareAccelerated="true"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070041 android:icon="@drawable/ic_home"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080042 android:label="@string/app_name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080043 android:requiredForAllUsers="true"
44 android:restoreAnyVersion="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080045 android:supportsRtl="true"
Santiago Etchebehereab639852019-02-26 10:42:44 -080046 android:name="com.android.customization.picker.CustomizationPickerApplication"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070047 android:theme="@style/CustomizationTheme">
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080048 <activity
49 android:name="com.android.customization.picker.CustomizationPickerActivity"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080050 android:label="@string/app_name"
Santiago Etchebehere742b8552019-11-07 14:25:20 -080051 android:resizeableActivity="false"
Ashwini Orugantia8409b82020-05-20 11:15:10 -070052 android:exported="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080053 android:theme="@style/CustomizationTheme.NoActionBar">
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080054 <intent-filter>
55 <action android:name="android.intent.action.SET_WALLPAPER"/>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080056
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080057 <category android:name="android.intent.category.DEFAULT"/>
58 </intent-filter>
59 </activity>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080060 <activity android:name="com.android.customization.picker.theme.CustomThemeActivity"
Santiago Etchebehere742b8552019-11-07 14:25:20 -080061 android:resizeableActivity="false"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080062 android:theme="@style/CustomizationTheme.NoActionBar"/>
chihhangchuangadb6f412020-05-07 01:23:10 +080063
64 <activity android:name="com.android.customization.picker.ViewOnlyFullPreviewActivity"
65 android:resizeableActivity="false"
66 android:theme="@style/CustomizationTheme.NoActionBar"/>
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080067 </application>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080068
Santiago Etchebehere0c696912018-11-29 18:03:48 -080069</manifest>