Also, create a system fallback WallpaperCropper Bug: 4225598 Change-Id: I6bc6d5a3bb3df1dc00f3db701978aa172020c568
20 lines
896 B
XML
20 lines
896 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.wallpapercropper" >
|
|
<uses-permission android:name="android.permission.SET_WALLPAPER" />
|
|
<uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
|
|
|
|
<application android:requiredForAllUsers="true">
|
|
<activity
|
|
android:name="WallpaperCropActivity"
|
|
android:theme="@style/Theme.WallpaperCropper"
|
|
android:label="@string/crop_wallpaper"
|
|
android:finishOnCloseSystemDialogs="true">
|
|
<intent-filter>
|
|
<action android:name="android.service.wallpaper.CROP_AND_SET_WALLPAPER" />
|
|
<data android:mimeType="image/*" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|