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 | |
Ian Pedowitz | 25cc33f | 2019-05-12 12:38:11 -0700 | [diff] [blame] | 6 | <uses-sdk android:targetSdkVersion="29" 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" /> |
Santiago Etchebehere | b36df5d | 2019-01-17 11:32:59 -0800 | [diff] [blame] | 11 | |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 12 | <application |
Hyunyoung Song | 472fcd1 | 2019-06-05 15:52:32 -0700 | [diff] [blame^] | 13 | tools:replace="android:icon,android:name" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 14 | android:extractNativeLibs="false" |
| 15 | android:hardwareAccelerated="true" |
Hyunyoung Song | 472fcd1 | 2019-06-05 15:52:32 -0700 | [diff] [blame^] | 16 | android:icon="@drawable/ic_home" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 17 | android:label="@string/app_name" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 18 | android:requiredForAllUsers="true" |
| 19 | android:restoreAnyVersion="true" |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 20 | android:supportsRtl="true" |
Santiago Etchebehere | ab63985 | 2019-02-26 10:42:44 -0800 | [diff] [blame] | 21 | android:name="com.android.customization.picker.CustomizationPickerApplication" |
Hyunyoung Song | 472fcd1 | 2019-06-05 15:52:32 -0700 | [diff] [blame^] | 22 | android:theme="@style/CustomizationTheme"> |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 23 | <activity |
| 24 | android:name="com.android.customization.picker.CustomizationPickerActivity" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 25 | android:label="@string/app_name" |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 26 | android:resizeableActivity="true" |
| 27 | android:theme="@style/CustomizationTheme.NoActionBar"> |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 28 | <intent-filter> |
| 29 | <action android:name="android.intent.action.SET_WALLPAPER"/> |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 30 | |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 31 | <category android:name="android.intent.category.DEFAULT"/> |
| 32 | </intent-filter> |
| 33 | </activity> |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 34 | <activity android:name="com.android.customization.picker.theme.CustomThemeActivity" |
| 35 | android:resizeableActivity="true" |
| 36 | android:theme="@style/CustomizationTheme.NoActionBar"/> |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 37 | </application> |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 38 | |
Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 39 | </manifest> |