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