forked from gwhiteside/abstract-art
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
42 lines (34 loc) · 1.84 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
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="net.georgewhiteside.android.abstractart"
android:versionCode="15"
android:versionName="1.0.0" >
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8" />
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
<uses-feature android:name="android.software.live_wallpaper" />
<!--uses-permission android:name="android.permission.INTERNET" /--> <!-- This is only needed when debugging with HierarchyViewer -->
<application android:name=".AbstractArt" android:icon="@drawable/icon" android:label="@string/app_name" >
<service android:label="@string/app_name" android:name=".Wallpaper" android:permission="android.permission.BIND_WALLPAPER">
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
</intent-filter>
<meta-data android:name="android.service.wallpaper" android:resource="@xml/metadata" />
</service>
<activity
android:label="@string/wallpaper_settings"
android:name="net.georgewhiteside.android.abstractart.Settings"
android:exported="true" />
<activity
android:label="@string/settings.background_chooser"
android:screenOrientation="portrait"
android:name="net.georgewhiteside.android.abstractart.settings.BackgroundSelector"
android:theme="@android:style/Theme.NoTitleBar"
android:exported="false" />
<activity
android:label="title"
android:name="net.georgewhiteside.android.abstractart.ServiceDialog"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="false" />
</application>
</manifest>