| <?xml version="1.0" encoding="utf-8"?> |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| package="com.broken.BrokenWalls"> |
| |
| <uses-permission android:name="android.permission.SET_WALLPAPER" /> |
| |
| <application android:label="@string/broken_name" android:icon="@drawable/broken_wallpaperchooser"> |
| <activity |
| android:name="brokenwalls" |
| android:label="@string/broken_label" |
| android:icon="@drawable/broken_wallpaperchooser" |
| android:screenOrientation="nosensor" |
| android:finishOnCloseSystemDialogs="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.SET_WALLPAPER" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| </intent-filter> |
| </activity> |
| |
| </application> |
| |
| </manifest> |