blob: 4857768087d06e028596d6a4b0a14a334ef0551f [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"/>
Santiago Etchebehere7a20a732019-04-22 18:13:12 -030010 <uses-permission android:name="android.permission.SET_WALLPAPER_COMPONENT" />
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -080011
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080012 <application
13 android:extractNativeLibs="false"
14 android:hardwareAccelerated="true"
15 android:icon="@mipmap/product_logo_wallpapers_launcher_color_48"
16 android:label="@string/app_name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080017 android:requiredForAllUsers="true"
18 android:restoreAnyVersion="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080019 android:supportsRtl="true"
Santiago Etchebehereab639852019-02-26 10:42:44 -080020 android:name="com.android.customization.picker.CustomizationPickerApplication"
21 android:theme="@style/CustomizationTheme"
22 tools:replace="android:name">
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080023 <activity
24 android:name="com.android.customization.picker.CustomizationPickerActivity"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080025 android:label="@string/app_name"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080026 android:resizeableActivity="true"
27 android:theme="@style/CustomizationTheme.NoActionBar">
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080028 <intent-filter>
29 <action android:name="android.intent.action.SET_WALLPAPER"/>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080030
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080031 <category android:name="android.intent.category.DEFAULT"/>
32 </intent-filter>
33 </activity>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080034 <activity android:name="com.android.customization.picker.theme.CustomThemeActivity"
35 android:resizeableActivity="true"
36 android:theme="@style/CustomizationTheme.NoActionBar"/>
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080037 </application>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080038
Santiago Etchebehere0c696912018-11-29 18:03:48 -080039</manifest>