blob: 1bcacab42ba463163e59f2063d174c187b8ef1bc [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 Etchebehere2790d742020-06-29 11:59:19 -07006 <uses-sdk android:targetSdkVersion="30" 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 Etchebehere2790d742020-06-29 11:59:19 -070011 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
Santiago Etchebehereb36df5d2019-01-17 11:32:59 -080012
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080013 <application
Hyunyoung Song472fcd12019-06-05 15:52:32 -070014 tools:replace="android:icon,android:name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080015 android:extractNativeLibs="false"
16 android:hardwareAccelerated="true"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070017 android:icon="@drawable/ic_home"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080018 android:label="@string/app_name"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080019 android:requiredForAllUsers="true"
20 android:restoreAnyVersion="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080021 android:supportsRtl="true"
Santiago Etchebehereab639852019-02-26 10:42:44 -080022 android:name="com.android.customization.picker.CustomizationPickerApplication"
Hyunyoung Song472fcd12019-06-05 15:52:32 -070023 android:theme="@style/CustomizationTheme">
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080024 <activity
25 android:name="com.android.customization.picker.CustomizationPickerActivity"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080026 android:label="@string/app_name"
Santiago Etchebehere742b8552019-11-07 14:25:20 -080027 android:resizeableActivity="false"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080028 android:theme="@style/CustomizationTheme.NoActionBar">
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080029 <intent-filter>
30 <action android:name="android.intent.action.SET_WALLPAPER"/>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080031
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080032 <category android:name="android.intent.category.DEFAULT"/>
33 </intent-filter>
34 </activity>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080035 <activity android:name="com.android.customization.picker.theme.CustomThemeActivity"
Santiago Etchebehere742b8552019-11-07 14:25:20 -080036 android:resizeableActivity="false"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080037 android:theme="@style/CustomizationTheme.NoActionBar"/>
chihhangchuangadb6f412020-05-07 01:23:10 +080038
39 <activity android:name="com.android.customization.picker.ViewOnlyFullPreviewActivity"
40 android:resizeableActivity="false"
41 android:theme="@style/CustomizationTheme.NoActionBar"/>
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080042 </application>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080043
Santiago Etchebehere0c696912018-11-29 18:03:48 -080044</manifest>