| Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> | 
| Chris Poultney | 9054c13 | 2024-02-05 21:14:08 +0000 | [diff] [blame] | 2 |  | 
 | 3 | <!-- The package name here must match the Studio namespace given in | 
 | 4 |      WallpaperPickerGoogle gradle config for Studio builds to succeed. | 
 | 5 |      `package_name` in Android.bp overrides this with the actual package name. | 
 | 6 |  --> | 
| Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 7 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 
| Santiago Etchebehere | ab63985 | 2019-02-26 10:42:44 -0800 | [diff] [blame] | 8 |           xmlns:tools="http://schemas.android.com/tools" | 
| Chris Poultney | 9054c13 | 2024-02-05 21:14:08 +0000 | [diff] [blame] | 9 |           package="com.google.android.apps.wallpaper"> | 
| Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 10 |  | 
| Santiago Etchebehere | 2790d74 | 2020-06-29 11:59:19 -0700 | [diff] [blame] | 11 |     <uses-sdk android:targetSdkVersion="30" android:minSdkVersion="28"/> | 
| Santiago Etchebehere | b36df5d | 2019-01-17 11:32:59 -0800 | [diff] [blame] | 12 |  | 
 | 13 |     <uses-permission android:name="android.permission.CHANGE_OVERLAY_PACKAGES"/> | 
 | 14 |     <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/> | 
| Santiago Etchebehere | 7a20a73 | 2019-04-22 18:13:12 -0300 | [diff] [blame] | 15 |     <uses-permission android:name="android.permission.SET_WALLPAPER_COMPONENT" /> | 
| Santiago Etchebehere | 151e6c5 | 2022-09-30 22:00:51 +0000 | [diff] [blame] | 16 |     <uses-permission android:name="android.permission.READ_DEVICE_CONFIG" /> | 
| Chihhang Chuang | eecf85e | 2021-06-14 13:48:57 +0800 | [diff] [blame] | 17 |     <uses-permission android:name="android.permission.MODIFY_DAY_NIGHT_MODE" /> | 
| Alejandro Nijamkin | 6238c2e | 2022-12-24 08:11:52 -0800 | [diff] [blame] | 18 |     <uses-permission android:name="android.permission.CUSTOMIZE_SYSTEM_UI" /> | 
| Edward Savage-Jones | d325f17 | 2022-05-13 00:49:59 +0200 | [diff] [blame] | 19 |     <uses-permission android:name="android.permission.BIND_WALLPAPER"/> | 
 | 20 |     <uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/> | 
 | 21 |     <uses-permission android:name="android.permission.READ_WALLPAPER_INTERNAL"/> | 
 | 22 |     <uses-permission android:name="android.permission.SET_WALLPAPER"/> | 
| Catherine Liang | 297424a | 2023-12-20 19:07:19 +0000 | [diff] [blame] | 23 |     <uses-permission android:name="android.permission.SET_WALLPAPER_DIM_AMOUNT" /> | 
| Anay Wadhera | ac2d620 | 2021-12-28 19:34:15 +0900 | [diff] [blame^] | 24 |     <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" /> | 
| Chihhang Chuang | eecf85e | 2021-06-14 13:48:57 +0800 | [diff] [blame] | 25 |  | 
| Ching-Sung Li | 336665b | 2021-04-13 21:14:09 +0800 | [diff] [blame] | 26 |     <queries> | 
| Edward Savage-Jones | d325f17 | 2022-05-13 00:49:59 +0200 | [diff] [blame] | 27 |         <package android:name="android"/> | 
 | 28 |         <package android:name="com.android.launcher3"/> | 
 | 29 |         <package android:name="com.android.settings"/> | 
 | 30 |         <package android:name="com.android.systemui"/> | 
 | 31 |  | 
| Ching-Sung Li | 336665b | 2021-04-13 21:14:09 +0800 | [diff] [blame] | 32 |         <!-- Specific intents Wallpaper picker query for --> | 
| Kunhung Li | 7b10d5b | 2022-07-06 16:19:47 +0800 | [diff] [blame] | 33 |         <!-- Package for theme stub --> | 
 | 34 |         <package android:name="com.android.customization.themes" /> | 
| Ching-Sung Li | 336665b | 2021-04-13 21:14:09 +0800 | [diff] [blame] | 35 |         <!-- Intent filter with action SET_WALLPAPER --> | 
 | 36 |         <intent> | 
 | 37 |             <action android:name="android.intent.action.SET_WALLPAPER" /> | 
 | 38 |         </intent> | 
 | 39 |         <!-- Intent filter with action GET_CONTENT and data's mimeType as "image/*" --> | 
 | 40 |         <intent> | 
 | 41 |             <action android:name="android.intent.action.GET_CONTENT" /> | 
 | 42 |             <data android:mimeType="image/*" /> | 
 | 43 |         </intent> | 
 | 44 |         <!-- Intent filter with action VIEW --> | 
 | 45 |         <intent> | 
 | 46 |             <action android:name="android.intent.action.VIEW" /> | 
| Ching-Sung Li | 6b3e6b1 | 2021-08-16 09:35:16 +0800 | [diff] [blame] | 47 |             <data android:scheme="http" /> | 
| Ching-Sung Li | 336665b | 2021-04-13 21:14:09 +0800 | [diff] [blame] | 48 |         </intent> | 
 | 49 |         <!-- Intent filter with action WallpaperService (live wallpaper interface) --> | 
 | 50 |         <intent> | 
 | 51 |             <action android:name="android.service.wallpaper.WallpaperService" /> | 
 | 52 |         </intent> | 
 | 53 |         <!-- Intent filter with action used to discover partner --> | 
 | 54 |         <intent> | 
 | 55 |             <action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION" /> | 
 | 56 |         </intent> | 
| Santiago Etchebehere | 151e6c5 | 2022-09-30 22:00:51 +0000 | [diff] [blame] | 57 |         <!-- Intent filter used to query the launcher Activity for grid preview metadata --> | 
 | 58 |         <intent> | 
 | 59 |             <action android:name="android.intent.action.MAIN" /> | 
 | 60 |             <category android:name="android.intent.category.HOME" /> | 
 | 61 |         </intent> | 
| Ching-Sung Li | 336665b | 2021-04-13 21:14:09 +0800 | [diff] [blame] | 62 |     </queries> | 
| Santiago Etchebehere | b36df5d | 2019-01-17 11:32:59 -0800 | [diff] [blame] | 63 |  | 
| Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 64 |     <application | 
| Hyunyoung Song | 472fcd1 | 2019-06-05 15:52:32 -0700 | [diff] [blame] | 65 |         tools:replace="android:icon,android:name" | 
| Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 66 |         android:extractNativeLibs="false" | 
 | 67 |         android:hardwareAccelerated="true" | 
| Hyunyoung Song | 472fcd1 | 2019-06-05 15:52:32 -0700 | [diff] [blame] | 68 |         android:icon="@drawable/ic_home" | 
| Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 69 |         android:label="@string/app_name" | 
| Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 70 |         android:requiredForAllUsers="true" | 
 | 71 |         android:restoreAnyVersion="true" | 
| Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 72 |         android:supportsRtl="true" | 
| Santiago Etchebehere | ab63985 | 2019-02-26 10:42:44 -0800 | [diff] [blame] | 73 |         android:name="com.android.customization.picker.CustomizationPickerApplication" | 
| Hyunyoung Song | 472fcd1 | 2019-06-05 15:52:32 -0700 | [diff] [blame] | 74 |         android:theme="@style/CustomizationTheme"> | 
| Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 75 |         <activity | 
| Chihhang Chuang | d2ece57 | 2021-06-17 22:40:26 +0800 | [diff] [blame] | 76 |             tools:node="replace" | 
| Chihhang Chuang | eecf85e | 2021-06-14 13:48:57 +0800 | [diff] [blame] | 77 |             android:name="com.android.wallpaper.picker.CustomizationPickerActivity" | 
| Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 78 |             android:label="@string/app_name" | 
| Ching-Sung Li | 304b04f | 2021-10-21 00:37:49 +0800 | [diff] [blame] | 79 |             android:relinquishTaskIdentity="true" | 
| Santiago Etchebehere | 742b855 | 2019-11-07 14:25:20 -0800 | [diff] [blame] | 80 |             android:resizeableActivity="false" | 
| Chihhang Chuang | eecf85e | 2021-06-14 13:48:57 +0800 | [diff] [blame] | 81 |             android:theme="@style/CustomizationTheme.NoActionBar" | 
 | 82 |             android:exported="false"/> | 
| Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 83 |  | 
| Ching-Sung Li | 72bb951 | 2022-04-13 21:58:12 +0800 | [diff] [blame] | 84 |         <activity | 
 | 85 |             tools:node="replace" | 
| Catherine Liang | 2589caa | 2024-08-21 18:24:35 +0000 | [diff] [blame] | 86 |             android:name="com.android.wallpaper.picker.customization.ui.CustomizationPickerActivity2" | 
 | 87 |             android:label="@string/app_name" | 
 | 88 |             android:relinquishTaskIdentity="true" | 
 | 89 |             android:resizeableActivity="false" | 
 | 90 |             android:theme="@style/WallpaperTheme" | 
 | 91 |             android:configChanges="assetsPaths" | 
 | 92 |             android:exported="false"/> | 
 | 93 |  | 
 | 94 |         <activity | 
 | 95 |             tools:node="replace" | 
| Ching-Sung Li | 72bb951 | 2022-04-13 21:58:12 +0800 | [diff] [blame] | 96 |             android:name="com.android.wallpaper.picker.PassThroughCustomizationPickerActivity" | 
 | 97 |             android:label="@string/app_name" | 
 | 98 |             android:resizeableActivity="false" | 
 | 99 |             android:theme="@style/CustomizationTheme.NoActionBar" | 
 | 100 |             android:exported="false"/> | 
 | 101 |  | 
 | 102 |         <activity | 
 | 103 |             tools:node="replace" | 
 | 104 |             android:name="com.android.wallpaper.picker.TrampolinePickerActivity" | 
 | 105 |             android:label="@string/app_name" | 
 | 106 |             android:relinquishTaskIdentity="true" | 
 | 107 |             android:resizeableActivity="false" | 
 | 108 |             android:theme="@style/CustomizationTheme.NoActionBar" | 
 | 109 |             android:exported="false"/> | 
 | 110 |  | 
| Chihhang Chuang | eecf85e | 2021-06-14 13:48:57 +0800 | [diff] [blame] | 111 |         <activity-alias | 
 | 112 |             android:name="com.android.customization.picker.CustomizationPickerActivity" | 
| Ching-Sung Li | 72bb951 | 2022-04-13 21:58:12 +0800 | [diff] [blame] | 113 |             android:targetActivity="com.android.wallpaper.picker.TrampolinePickerActivity" | 
| Chihhang Chuang | eecf85e | 2021-06-14 13:48:57 +0800 | [diff] [blame] | 114 |             android:label="@string/app_name" | 
 | 115 |             android:exported="true"> | 
 | 116 |              <intent-filter> | 
 | 117 |                  <action android:name="android.intent.action.SET_WALLPAPER"/> | 
 | 118 |                  <category android:name="android.intent.category.DEFAULT"/> | 
 | 119 |              </intent-filter> | 
 | 120 |         </activity-alias> | 
 | 121 |  | 
| Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 122 |     </application> | 
| Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 123 | </manifest> |