blob: dae680ee07a57246e1d632b62fe5e59ac5a64a8d [file] [log] [blame]
Santiago Etchebehere0c696912018-11-29 18:03:48 -08001<?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 Etchebehereb36df5d2019-01-17 11:32:59 -08005 <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 Etchebeherecca6d492018-12-04 18:29:48 -080010 <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 Etchebeheref23466e2018-12-10 14:56:55 -080015 android:theme="@style/CustomizationTheme"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080016 android:requiredForAllUsers="true"
17 android:restoreAnyVersion="true"
18 android:supportsRtl="true">
Santiago Etchebehere0c696912018-11-29 18:03:48 -080019
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080020 <activity android:name="com.android.theme.picker.ThemePickerActivity"
21 android:label="@string/app_name"
Santiago Etchebeheref23466e2018-12-10 14:56:55 -080022 android:theme="@style/CustomizationTheme.NoActionBar"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080023 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 Etchebehere0c696912018-11-29 18:03:48 -080030</manifest>