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 | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 5 | <uses-sdk android:targetSdkVersion="28" android:minSdkVersion="28"/> |
| 6 | <application |
| 7 | android:extractNativeLibs="false" |
| 8 | android:hardwareAccelerated="true" |
| 9 | android:icon="@mipmap/product_logo_wallpapers_launcher_color_48" |
| 10 | android:label="@string/app_name" |
Santiago Etchebehere | f23466e | 2018-12-10 14:56:55 -0800 | [diff] [blame] | 11 | android:theme="@style/CustomizationTheme" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 12 | android:requiredForAllUsers="true" |
| 13 | android:restoreAnyVersion="true" |
| 14 | android:supportsRtl="true"> |
Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 15 | |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 16 | <activity android:name="com.android.theme.picker.ThemePickerActivity" |
| 17 | android:label="@string/app_name" |
Santiago Etchebehere | f23466e | 2018-12-10 14:56:55 -0800 | [diff] [blame] | 18 | android:theme="@style/CustomizationTheme.NoActionBar" |
Santiago Etchebehere | cca6d49 | 2018-12-04 18:29:48 -0800 | [diff] [blame] | 19 | android:resizeableActivity="true"> |
| 20 | <intent-filter> |
| 21 | <action android:name="android.intent.action.SET_WALLPAPER"/> |
| 22 | <category android:name="android.intent.category.DEFAULT"/> |
| 23 | </intent-filter> |
| 24 | </activity> |
| 25 | </application> |
Santiago Etchebehere | 0c69691 | 2018-11-29 18:03:48 -0800 | [diff] [blame] | 26 | </manifest> |