blob: a7b0cd5cc8f023e7d8845c7f883d0046a426aeb9 [file] [log] [blame]
Michael Jurkaf1b220b2013-12-12 15:04:25 +01001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Sunny Goyal748dfe02016-02-05 13:28:37 -08003 package="com.android.wallpaperpicker"
Michael Jurkaf1b220b2013-12-12 15:04:25 +01004 android:versionCode="1"
5 android:versionName="1.0"
6 >
Sunny Goyala2b2f912015-01-05 12:40:08 -08007
android-t277ca0642023-03-14 10:11:05 +08008 <uses-sdk android:minSdkVersion="16"
9 android:targetSdkVersion="29"/>
Tony Wickhame396f912016-02-02 10:51:40 -080010
11 <uses-permission android:name="android.permission.SET_WALLPAPER" />
12
android-t277ca0642023-03-14 10:11:05 +080013 <application
14 android:label="@string/pick_wallpaper"
15 android:icon="@mipmap/ic_launcher_wallpaper">
Sunny Goyal748dfe02016-02-05 13:28:37 -080016
17 <activity
18 android:name="com.android.wallpaperpicker.WallpaperPickerActivity"
Sunny Goyal7820af12016-02-18 15:03:14 -080019 android:theme="@style/WallpaperTheme.Picker"
Sunny Goyal748dfe02016-02-05 13:28:37 -080020 android:label="@string/pick_wallpaper"
21 android:icon="@mipmap/ic_launcher_wallpaper"
xiaoyang.wang0933ad12023-06-16 13:11:32 +080022 android:screenOrientation="portrait"
android-t277ca0642023-03-14 10:11:05 +080023 android:finishOnCloseSystemDialogs="true"
24 android:exported="true">
Sunny Goyal748dfe02016-02-05 13:28:37 -080025 <intent-filter>
26 <action android:name="android.intent.action.SET_WALLPAPER" />
27 <category android:name="android.intent.category.DEFAULT" />
28 </intent-filter>
29 </activity>
30
31 <activity
32 android:name="com.android.wallpaperpicker.WallpaperCropActivity"
Sunny Goyal7820af12016-02-18 15:03:14 -080033 android:theme="@style/WallpaperTheme"
Sunny Goyal748dfe02016-02-05 13:28:37 -080034 android:label="@string/crop_wallpaper"
35 android:icon="@mipmap/ic_launcher_wallpaper"
android-t277ca0642023-03-14 10:11:05 +080036 android:finishOnCloseSystemDialogs="true"
37 android:exported="true">
Sunny Goyal748dfe02016-02-05 13:28:37 -080038 <intent-filter>
39 <action android:name="android.service.wallpaper.CROP_AND_SET_WALLPAPER" />
40 <category android:name="android.intent.category.DEFAULT" />
41 <data android:mimeType="image/*" />
42 </intent-filter>
43 </activity>
44 </application>
Michael Jurkaf1b220b2013-12-12 15:04:25 +010045</manifest>