blob: 0046cadbdc5afa73a082e8b118a726ed31296427 [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"
Santiago Etchebehereab639852019-02-26 10:42:44 -08003 xmlns:tools="http://schemas.android.com/tools"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -08004 package="com.android.wallpaper">
Santiago Etchebehere0c696912018-11-29 18:03:48 -08005
Santiago Etchebehere631bfe32019-02-06 18:12:01 -08006 <uses-sdk android:targetSdkVersion="Q" android:minSdkVersion="28"/>
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -08007
8 <uses-permission android:name="android.permission.CHANGE_OVERLAY_PACKAGES"/>
9 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
10
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080011 <application
12 android:extractNativeLibs="false"
13 android:hardwareAccelerated="true"
14 android:icon="@mipmap/product_logo_wallpapers_launcher_color_48"
15 android:label="@string/app_name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080016 android:requiredForAllUsers="true"
17 android:restoreAnyVersion="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080018 android:supportsRtl="true"
Santiago Etchebehereab639852019-02-26 10:42:44 -080019 android:name="com.android.customization.picker.CustomizationPickerApplication"
20 android:theme="@style/CustomizationTheme"
21 tools:replace="android:name">
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080022 <activity
23 android:name="com.android.customization.picker.CustomizationPickerActivity"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080024 android:label="@string/app_name"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080025 android:resizeableActivity="true"
26 android:theme="@style/CustomizationTheme.NoActionBar">
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080027 <intent-filter>
28 <action android:name="android.intent.action.SET_WALLPAPER"/>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080029
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080030 <category android:name="android.intent.category.DEFAULT"/>
31 </intent-filter>
32 </activity>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080033 <activity android:name="com.android.customization.picker.theme.CustomThemeActivity"
34 android:resizeableActivity="true"
35 android:theme="@style/CustomizationTheme.NoActionBar"/>
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080036 </application>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080037
Santiago Etchebehere0c696912018-11-29 18:03:48 -080038</manifest>