blob: 990f04332c545aa4f52a724e1f69464902382e87 [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 Etchebehereb356ed02019-02-08 09:46:32 -08003 package="com.android.wallpaper">
Santiago Etchebehere0c696912018-11-29 18:03:48 -08004
Santiago Etchebehere631bfe32019-02-06 18:12:01 -08005 <uses-sdk android:targetSdkVersion="Q" android:minSdkVersion="28"/>
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -08006
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 Etchebeherecca6d492018-12-04 18:29:48 -080015 android:requiredForAllUsers="true"
16 android:restoreAnyVersion="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080017 android:supportsRtl="true"
18 android:theme="@style/CustomizationTheme">
19 <activity
20 android:name="com.android.customization.picker.CustomizationPickerActivity"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080021 android:label="@string/app_name"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080022 android:resizeableActivity="true"
23 android:theme="@style/CustomizationTheme.NoActionBar">
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080024 <intent-filter>
25 <action android:name="android.intent.action.SET_WALLPAPER"/>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080026
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080027 <category android:name="android.intent.category.DEFAULT"/>
28 </intent-filter>
29 </activity>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080030 <activity android:name="com.android.customization.picker.theme.CustomThemeActivity"
31 android:resizeableActivity="true"
32 android:theme="@style/CustomizationTheme.NoActionBar"/>
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080033 </application>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080034
Santiago Etchebehere0c696912018-11-29 18:03:48 -080035</manifest>