summaryrefslogtreecommitdiffstats
path: root/packages/WallpaperCropper/AndroidManifest.xml
blob: 27755bd2c7cccb282df06974a9fcfcb772e939bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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>