Home | History | Annotate | Download | only in WallpaperCropper
      1 <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>
     20