-
Notifications
You must be signed in to change notification settings - Fork 1
/
AndroidManifest.xml
28 lines (23 loc) · 985 Bytes
/
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
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.lastminute.labs.colouredpaper"
android:versionCode="1"
android:versionName="1"
>
<application
android:label="@string/app_name"
android:icon="@drawable/icon_launcher" android:debuggable="false">
<service
android:label="@string/app_name"
android:name=".ColouredPaper"
android:permission="android.permission.BIND_WALLPAPER" android:icon="@drawable/icon_launcher">
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
</intent-filter>
<meta-data android:name="android.service.wallpaper" android:resource="@xml/colouredpaper1" />
</service>
</application>
<uses-sdk android:minSdkVersion="7"></uses-sdk>
<uses-feature android:name="android.software.live_wallpaper" />
</manifest>