blob: da3d15ef7d88d03128082de93e39f92e0b7969f2 [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"
3 package="com.android.wallpaper">
4
Santiago Etchebeherecca6d492018-12-04 18:29:48 -08005 <uses-sdk android:targetSdkVersion="28" android:minSdkVersion="28"/>
6 <application
7 android:extractNativeLibs="false"
8 android:hardwareAccelerated="true"
9 android:icon="@mipmap/product_logo_wallpapers_launcher_color_48"
10 android:label="@string/app_name"
Santiago Etchebeheref23466e2018-12-10 14:56:55 -080011 android:theme="@style/CustomizationTheme"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080012 android:requiredForAllUsers="true"
13 android:restoreAnyVersion="true"
14 android:supportsRtl="true">
Santiago Etchebehere0c696912018-11-29 18:03:48 -080015
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080016 <activity android:name="com.android.theme.picker.ThemePickerActivity"
17 android:label="@string/app_name"
Santiago Etchebeheref23466e2018-12-10 14:56:55 -080018 android:theme="@style/CustomizationTheme.NoActionBar"
Santiago Etchebeherecca6d492018-12-04 18:29:48 -080019 android:resizeableActivity="true">
20 <intent-filter>
21 <action android:name="android.intent.action.SET_WALLPAPER"/>
22 <category android:name="android.intent.category.DEFAULT"/>
23 </intent-filter>
24 </activity>
25 </application>
Santiago Etchebehere0c696912018-11-29 18:03:48 -080026</manifest>