blob: 31b55779ba9c95245caf17e5ebe6c3ba3804e773 [file] [log] [blame]
spacecaker2bcffbc2013-05-16 22:05:00 +02001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
InkSlinger66653678e32015-09-04 17:34:22 -05003 package="com.broken.BrokenWalls">
spacecaker2bcffbc2013-05-16 22:05:00 +02004
5 <uses-permission android:name="android.permission.SET_WALLPAPER" />
6
InkSlinger66653678e32015-09-04 17:34:22 -05007 <application android:label="@string/broken_name" android:icon="@drawable/broken_wallpaperchooser">
spacecaker2bcffbc2013-05-16 22:05:00 +02008 <activity
InkSlinger66653678e32015-09-04 17:34:22 -05009 android:name="brokenwalls"
10 android:label="@string/broken_label"
11 android:icon="@drawable/broken_wallpaperchooser"
spacecaker2bcffbc2013-05-16 22:05:00 +020012 android:screenOrientation="nosensor"
13 android:finishOnCloseSystemDialogs="true">
14 <intent-filter>
15 <action android:name="android.intent.action.SET_WALLPAPER" />
16 <category android:name="android.intent.category.DEFAULT" />
17 </intent-filter>
18 </activity>
19
20 </application>
21
22</manifest>