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" /> |
Danny Lin | 6ccc814 | 2021-10-05 22:40:58 -0700 | [diff] [blame] | 11 | <uses-permission android:name="android.permission.BIND_WALLPAPER" /> |
Santiago Etchebehere | 151e6c5 | 2022-09-30 22:00:51 +0000 | [diff] [blame] | 12 | <uses-permission android:name="android.permission.READ_DEVICE_CONFIG" /> |
Chihhang Chuang | eecf85e | 2021-06-14 13:48:57 +0800 | [diff] [blame] | 13 | <uses-permission android:name="android.permission.MODIFY_DAY_NIGHT_MODE" /> |
Alejandro Nijamkin | 6238c2e | 2022-12-24 08:11:52 -0800 | [diff] [blame] | 14 | <uses-permission android:name="android.permission.CUSTOMIZE_SYSTEM_UI" /> |
Anay Wadhera | b6aad8f | 2021-12-28 19:34:15 +0900 | [diff] [blame] | 15 | <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" /> |
Chihhang Chuang | eecf85e | 2021-06-14 13:48:57 +0800 | [diff] [blame] | 16 | |
Ching-Sung Li | 336665b | 2021-04-13 21:14:09 +0800 | [diff] [blame] | 17 | <queries> |
| 18 | <!-- Specific intents Wallpaper picker query for --> |
Kunhung Li | 7b10d5b | 2022-07-06 16:19:47 +0800 | [diff] [blame] | 19 | <!-- Package for theme stub --> |
| 20 | <package android:name="com.android.customization.themes" /> |
Ching-Sung Li | 336665b | 2021-04-13 21:14:09 +0800 | [diff] [blame] | 21 | <!-- Intent filter with action SET_WALLPAPER --> |
| 22 | <intent> |
| 23 | <action android:name="android.intent.action.SET_WALLPAPER" /> |
| 24 | </intent> |
| 25 | <!-- Intent filter with action GET_CONTENT and data's mimeType as "image/*" --> |
| 26 | <intent> |
| 27 | <action android:name="android.intent.action.GET_CONTENT" /> |
| 28 | <data android:mimeType="image/*" /> |
| 29 | </intent> |
| 30 | <!-- Intent filter with action VIEW --> |
| 31 | <intent> |
| 32 | <action android:name="android.intent.action.VIEW" /> |
Ching-Sung Li | 6b3e6b1 | 2021-08-16 09:35:16 +0800 | [diff] [blame] | 33 | <data android:scheme="http" /> |
Ching-Sung Li | 336665b | 2021-04-13 21:14:09 +0800 | [diff] [blame] | 34 | </intent> |
| 35 | <!-- Intent filter with action WallpaperService (live wallpaper interface) --> |
| 36 | <intent> |
| 37 | <action android:name="android.service.wallpaper.WallpaperService" /> |
| 38 | </intent> |
| 39 | <!-- Intent filter with action used to discover partner --> |
| 40 | <intent> |
| 41 | <action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION" /> |
| 42 | </intent> |
Santiago Etchebehere | 151e6c5 | 2022-09-30 22:00:51 +0000 | [diff] [blame] | 43 | <!-- Intent filter used to query the launcher Activity for grid preview metadata --> |
Danny Lin | ac21d32 | 2021-10-05 19:12:40 -0700 | [diff] [blame] | 44 | <intent> |
| 45 | <action android:name="android.intent.action.MAIN" /> |
| 46 | <category android:name="android.intent.category.HOME" /> |
| 47 | </intent> |
Ching-Sung Li | 336665b | 2021-04-13 21:14:09 +0800 | [diff] [blame] | 48 | </queries> |
Santiago Etchebehere | b36df5d | 2019-01-17 11:32:59 -0800 | [diff] [blame] | 49 | |
Luca Stefani | b4bb313 | 2019-11-01 23:17:08 +0100 | [diff] [blame] | 50 | <uses-permission android:name="com.android.launcher3.permission.READ_SETTINGS" /> |
| 51 | <uses-permission android:name="com.android.launcher3.permission.WRITE_SETTINGS" /> |
| 52 | |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 53 | <application |
Hyunyoung Song | 472fcd1 | 2019-06-05 15:52:32 -0700 | [diff] [blame] | 54 | tools:replace="android:icon,android:name" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 55 | android:extractNativeLibs="false" |
| 56 | android:hardwareAccelerated="true" |
Asher Simonds | 5f7f51e | 2022-04-06 21:51:58 +0200 | [diff] [blame] | 57 | android:icon="@mipmap/ic_launcher" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 58 | android:label="@string/app_name" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 59 | android:requiredForAllUsers="true" |
| 60 | android:restoreAnyVersion="true" |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 61 | android:supportsRtl="true" |
Santiago Etchebehere | ab63985 | 2019-02-26 10:42:44 -0800 | [diff] [blame] | 62 | android:name="com.android.customization.picker.CustomizationPickerApplication" |
Hyunyoung Song | 472fcd1 | 2019-06-05 15:52:32 -0700 | [diff] [blame] | 63 | android:theme="@style/CustomizationTheme"> |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 64 | <activity |
Chihhang Chuang | d2ece57 | 2021-06-17 22:40:26 +0800 | [diff] [blame] | 65 | tools:node="replace" |
Chihhang Chuang | eecf85e | 2021-06-14 13:48:57 +0800 | [diff] [blame] | 66 | android:name="com.android.wallpaper.picker.CustomizationPickerActivity" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 67 | android:label="@string/app_name" |
Ching-Sung Li | 304b04f | 2021-10-21 00:37:49 +0800 | [diff] [blame] | 68 | android:relinquishTaskIdentity="true" |
Santiago Etchebehere | 742b855 | 2019-11-07 14:25:20 -0800 | [diff] [blame] | 69 | android:resizeableActivity="false" |
Chihhang Chuang | eecf85e | 2021-06-14 13:48:57 +0800 | [diff] [blame] | 70 | android:theme="@style/CustomizationTheme.NoActionBar" |
| 71 | android:exported="false"/> |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 72 | |
Ching-Sung Li | 72bb951 | 2022-04-13 21:58:12 +0800 | [diff] [blame] | 73 | <activity |
| 74 | tools:node="replace" |
| 75 | android:name="com.android.wallpaper.picker.PassThroughCustomizationPickerActivity" |
| 76 | android:label="@string/app_name" |
| 77 | android:resizeableActivity="false" |
| 78 | android:theme="@style/CustomizationTheme.NoActionBar" |
| 79 | android:exported="false"/> |
| 80 | |
| 81 | <activity |
| 82 | tools:node="replace" |
| 83 | android:name="com.android.wallpaper.picker.TrampolinePickerActivity" |
| 84 | android:label="@string/app_name" |
| 85 | android:relinquishTaskIdentity="true" |
| 86 | android:resizeableActivity="false" |
| 87 | android:theme="@style/CustomizationTheme.NoActionBar" |
| 88 | android:exported="false"/> |
| 89 | |
Chihhang Chuang | eecf85e | 2021-06-14 13:48:57 +0800 | [diff] [blame] | 90 | <activity-alias |
| 91 | android:name="com.android.customization.picker.CustomizationPickerActivity" |
Ching-Sung Li | 72bb951 | 2022-04-13 21:58:12 +0800 | [diff] [blame] | 92 | android:targetActivity="com.android.wallpaper.picker.TrampolinePickerActivity" |
Chihhang Chuang | eecf85e | 2021-06-14 13:48:57 +0800 | [diff] [blame] | 93 | android:label="@string/app_name" |
| 94 | android:exported="true"> |
| 95 | <intent-filter> |
| 96 | <action android:name="android.intent.action.SET_WALLPAPER"/> |
| 97 | <category android:name="android.intent.category.DEFAULT"/> |
| 98 | </intent-filter> |
| 99 | </activity-alias> |
| 100 | |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 101 | </application> |
Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 102 | </manifest> |