blob: 27755bd2c7cccb282df06974a9fcfcb772e939bd [file] [log] [blame]
Michael Jurkae8d1bf72013-09-09 15:58:54 +02001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.wallpapercropper" >
3 <uses-permission android:name="android.permission.SET_WALLPAPER" />
4 <uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
5
6 <application android:requiredForAllUsers="true">
7 <activity
8 android:name="WallpaperCropActivity"
9 android:theme="@style/Theme.WallpaperCropper"
10 android:label="@string/crop_wallpaper"
11 android:finishOnCloseSystemDialogs="true">
12 <intent-filter>
13 <action android:name="android.service.wallpaper.CROP_AND_SET_WALLPAPER" />
14 <data android:mimeType="image/*" />
15 <category android:name="android.intent.category.DEFAULT" />
16 </intent-filter>
17 </activity>
18 </application>
19</manifest>