Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Santiago Etchebehere | ab63985 | 2019-02-26 10:42:44 -0800 | [diff] [blame] | 3 | xmlns:tools="http://schemas.android.com/tools" |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 4 | package="com.android.wallpaper"> |
Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 5 | |
Santiago Etchebehere | 2790d74 | 2020-06-29 11:59:19 -0700 | [diff] [blame] | 6 | <uses-sdk android:targetSdkVersion="30" android:minSdkVersion="28"/> |
Santiago Etchebehere | b36df5d | 2019-01-17 11:32:59 -0800 | [diff] [blame] | 7 | |
| 8 | <uses-permission android:name="android.permission.CHANGE_OVERLAY_PACKAGES"/> |
| 9 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/> |
Santiago Etchebehere | 7a20a73 | 2019-04-22 18:13:12 -0300 | [diff] [blame] | 10 | <uses-permission android:name="android.permission.SET_WALLPAPER_COMPONENT" /> |
Ching-Sung Li | 336665b | 2021-04-13 21:14:09 +0800 | [diff] [blame] | 11 | |
| 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 Etchebehere | b36df5d | 2019-01-17 11:32:59 -0800 | [diff] [blame] | 36 | |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 37 | <application |
Hyunyoung Song | 472fcd1 | 2019-06-05 15:52:32 -0700 | [diff] [blame] | 38 | tools:replace="android:icon,android:name" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 39 | android:extractNativeLibs="false" |
| 40 | android:hardwareAccelerated="true" |
Hyunyoung Song | 472fcd1 | 2019-06-05 15:52:32 -0700 | [diff] [blame] | 41 | android:icon="@drawable/ic_home" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 42 | android:label="@string/app_name" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 43 | android:requiredForAllUsers="true" |
| 44 | android:restoreAnyVersion="true" |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 45 | android:supportsRtl="true" |
Santiago Etchebehere | ab63985 | 2019-02-26 10:42:44 -0800 | [diff] [blame] | 46 | android:name="com.android.customization.picker.CustomizationPickerApplication" |
Hyunyoung Song | 472fcd1 | 2019-06-05 15:52:32 -0700 | [diff] [blame] | 47 | android:theme="@style/CustomizationTheme"> |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 48 | <activity |
| 49 | android:name="com.android.customization.picker.CustomizationPickerActivity" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 50 | android:label="@string/app_name" |
Santiago Etchebehere | 742b855 | 2019-11-07 14:25:20 -0800 | [diff] [blame] | 51 | android:resizeableActivity="false" |
Ashwini Oruganti | a8409b8 | 2020-05-20 11:15:10 -0700 | [diff] [blame] | 52 | android:exported="true" |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 53 | android:theme="@style/CustomizationTheme.NoActionBar"> |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 54 | <intent-filter> |
| 55 | <action android:name="android.intent.action.SET_WALLPAPER"/> |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 56 | |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 57 | <category android:name="android.intent.category.DEFAULT"/> |
| 58 | </intent-filter> |
| 59 | </activity> |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 60 | <activity android:name="com.android.customization.picker.theme.CustomThemeActivity" |
Santiago Etchebehere | 742b855 | 2019-11-07 14:25:20 -0800 | [diff] [blame] | 61 | android:resizeableActivity="false" |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 62 | android:theme="@style/CustomizationTheme.NoActionBar"/> |
chihhangchuang | adb6f41 | 2020-05-07 01:23:10 +0800 | [diff] [blame] | 63 | |
| 64 | <activity android:name="com.android.customization.picker.ViewOnlyFullPreviewActivity" |
| 65 | android:resizeableActivity="false" |
| 66 | android:theme="@style/CustomizationTheme.NoActionBar"/> |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 67 | </application> |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 68 | |
Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 69 | </manifest> |