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 | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 3 | package="com.android.wallpaper"> |
Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 4 | |
Santiago Etchebehere | 631bfe3 | 2019-02-06 18:12:01 -0800 | [diff] [blame] | 5 | <uses-sdk android:targetSdkVersion="Q" android:minSdkVersion="28"/> |
Santiago Etchebehere | b36df5d | 2019-01-17 11:32:59 -0800 | [diff] [blame] | 6 | |
| 7 | <uses-permission android:name="android.permission.CHANGE_OVERLAY_PACKAGES"/> |
| 8 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/> |
| 9 | |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 10 | <application |
| 11 | android:extractNativeLibs="false" |
| 12 | android:hardwareAccelerated="true" |
| 13 | android:icon="@mipmap/product_logo_wallpapers_launcher_color_48" |
| 14 | android:label="@string/app_name" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 15 | android:requiredForAllUsers="true" |
| 16 | android:restoreAnyVersion="true" |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 17 | android:supportsRtl="true" |
| 18 | android:theme="@style/CustomizationTheme"> |
| 19 | <activity |
| 20 | android:name="com.android.customization.picker.CustomizationPickerActivity" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 21 | android:label="@string/app_name" |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 22 | android:resizeableActivity="true" |
| 23 | android:theme="@style/CustomizationTheme.NoActionBar"> |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 24 | <intent-filter> |
| 25 | <action android:name="android.intent.action.SET_WALLPAPER"/> |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 26 | |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 27 | <category android:name="android.intent.category.DEFAULT"/> |
| 28 | </intent-filter> |
| 29 | </activity> |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 30 | <activity android:name="com.android.customization.picker.theme.CustomThemeActivity" |
| 31 | android:resizeableActivity="true" |
| 32 | android:theme="@style/CustomizationTheme.NoActionBar"/> |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 33 | </application> |
Santiago Etchebehere | b356ed0 | 2019-02-08 09:46:32 -0800 | [diff] [blame] | 34 | |
Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 35 | </manifest> |