summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'AndroidManifest.xml')
-rwxr-xr-xAndroidManifest.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100755
index 0000000..6c0fcac
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="us.replicant.ReplicantWallpapers">
+
+ <uses-permission android:name="android.permission.SET_WALLPAPER" />
+
+ <application android:label="@string/app_name" android:icon="@drawable/replicant_logo">
+ <activity
+ android:name="WallpaperChooser"
+ android:label="@string/app_label"
+ android:icon="@drawable/replicant_logo"
+ 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>