forked from VanillaRoms/android_packages_apps_VUPapers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
48 lines (38 loc) · 1.6 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2013 XenonHD
Licensed under the GNU GPLv2 license
The text of the license can be found in the LICENSE file
or at https://www.gnu.org/licenses/gpl-2.0.txt
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.th.XenonWallpapers" android:versionName="1.1" android:versionCode="2">
<uses-permission android:name="android.permission.SET_WALLPAPER" />
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="Wallpaper"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
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>
<activity
android:name="SolidColor"
android:label="@string/solid_color"
android:icon="@drawable/solid_color" >
<intent-filter>
<action android:name="android.intent.action.SET_WALLPAPER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>