blob: d5f3c8b72a343e1e229c9f0b1ac64ca77c1e83ce [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"
Ashwini Orugantia8409b82020-05-20 11:15:10 -070028 android:exported="true"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080029 android:theme="@style/CustomizationTheme.NoActionBar">
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080030 <intent-filter>
31 <action android:name="android.intent.action.SET_WALLPAPER"/>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080032
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080033 <category android:name="android.intent.category.DEFAULT"/>
34 </intent-filter>
35 </activity>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080036 <activity android:name="com.android.customization.picker.theme.CustomThemeActivity"
Santiago Etchebehere742b8552019-11-07 14:25:20 -080037 android:resizeableActivity="false"
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080038 android:theme="@style/CustomizationTheme.NoActionBar"/>
chihhangchuangadb6f412020-05-07 01:23:10 +080039
40 <activity android:name="com.android.customization.picker.ViewOnlyFullPreviewActivity"
41 android:resizeableActivity="false"
42 android:theme="@style/CustomizationTheme.NoActionBar"/>
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080043 </application>
Santiago Etchebehereb356ed02019-02-08 09:46:32 -080044
Santiago Etchebehere0c696912018-11-29 18:03:48 -080045</manifest>