-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAndroidManifest.xml
29 lines (29 loc) · 1.41 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="uk.cpjsmith.ponypaper"
android:versionCode="1"
android:versionName="1.6.0">
<uses-sdk android:minSdkVersion="11"
android:targetSdkVersion="21" />
<uses-feature android:name="android.software.live_wallpaper"
android:required="true" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />
<application android:label="@string/app_name"
android:icon="@drawable/thumb">
<service android:name=".PonyWallpaper"
android:label="@string/app_name"
android:permission="android.permission.BIND_WALLPAPER">
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data android:name="android.service.wallpaper"
android:resource="@xml/wallpaper" />
</service>
<activity android:name=".Settings"
android:label="@string/app_settings_name"
android:exported="true" />
</application>
</manifest>