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" |
| 3 | package="com.android.wallpaper"> |
| 4 | |
Santiago Etchebehere | b36df5d | 2019-01-17 11:32:59 -0800 | [diff] [blame^] | 5 | <uses-sdk android:targetSdkVersion="Q" android:minSdkVersion="Q"/> |
| 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 | f23466e | 2018-12-10 14:56:55 -0800 | [diff] [blame] | 15 | android:theme="@style/CustomizationTheme" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 16 | android:requiredForAllUsers="true" |
| 17 | android:restoreAnyVersion="true" |
| 18 | android:supportsRtl="true"> |
Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 19 | |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 20 | <activity android:name="com.android.theme.picker.ThemePickerActivity" |
| 21 | android:label="@string/app_name" |
Santiago Etchebehere | f23466e | 2018-12-10 14:56:55 -0800 | [diff] [blame] | 22 | android:theme="@style/CustomizationTheme.NoActionBar" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 23 | android:resizeableActivity="true"> |
| 24 | <intent-filter> |
| 25 | <action android:name="android.intent.action.SET_WALLPAPER"/> |
| 26 | <category android:name="android.intent.category.DEFAULT"/> |
| 27 | </intent-filter> |
| 28 | </activity> |
| 29 | </application> |
Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 30 | </manifest> |