blob: d6d7759960b736ca5284254201aa07a31bbf6120 [file] [log] [blame]
Michael Jurkaf1b220b2013-12-12 15:04:25 +01001<?xml version="1.0" encoding="utf-8"?>
Ashwini Oruganti6fdf12a2020-03-23 16:10:06 -07002
Michael Jurkaf1b220b2013-12-12 15:04:25 +01003<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Oruganti6fdf12a2020-03-23 16:10:06 -07004 package="com.android.wallpaperpicker"
5 android:versionCode="1"
6 android:versionName="1.0">
Sunny Goyala2b2f912015-01-05 12:40:08 -08007
Ashwini Oruganti6fdf12a2020-03-23 16:10:06 -07008 <uses-sdk android:minSdkVersion="16"
9 android:targetSdkVersion="29"/>
Tony Wickhame396f912016-02-02 10:51:40 -080010
Ashwini Oruganti6fdf12a2020-03-23 16:10:06 -070011 <uses-permission android:name="android.permission.SET_WALLPAPER"/>
Tony Wickhame396f912016-02-02 10:51:40 -080012
Sunny Goyal748dfe02016-02-05 13:28:37 -080013 <application>
14
Ashwini Oruganti6fdf12a2020-03-23 16:10:06 -070015 <activity android:name="com.android.wallpaperpicker.WallpaperPickerActivity"
16 android:theme="@style/WallpaperTheme.Picker"
17 android:label="@string/pick_wallpaper"
18 android:icon="@mipmap/ic_launcher_wallpaper"
19 android:finishOnCloseSystemDialogs="true"
20 android:exported="true">
Sunny Goyal748dfe02016-02-05 13:28:37 -080021 <intent-filter>
Ashwini Oruganti6fdf12a2020-03-23 16:10:06 -070022 <action android:name="android.intent.action.SET_WALLPAPER"/>
23 <category android:name="android.intent.category.DEFAULT"/>
Sunny Goyal748dfe02016-02-05 13:28:37 -080024 </intent-filter>
25 </activity>
26
Ashwini Oruganti6fdf12a2020-03-23 16:10:06 -070027 <activity android:name="com.android.wallpaperpicker.WallpaperCropActivity"
28 android:theme="@style/WallpaperTheme"
29 android:label="@string/crop_wallpaper"
30 android:icon="@mipmap/ic_launcher_wallpaper"
31 android:finishOnCloseSystemDialogs="true"
32 android:exported="true">
Sunny Goyal748dfe02016-02-05 13:28:37 -080033 <intent-filter>
Ashwini Oruganti6fdf12a2020-03-23 16:10:06 -070034 <action android:name="android.service.wallpaper.CROP_AND_SET_WALLPAPER"/>
35 <category android:name="android.intent.category.DEFAULT"/>
36 <data android:mimeType="image/*"/>
Sunny Goyal748dfe02016-02-05 13:28:37 -080037 </intent-filter>
38 </activity>
39 </application>
Michael Jurkaf1b220b2013-12-12 15:04:25 +010040</manifest>