From http://www.jwz.org/xscreensaver/xscreensaver-5.34.tar.gz
[xscreensaver] / android / project / xscreensaver / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.jwz.xscreensaver"
3 android:versionCode="1"
4 android:versionName="1.0">
5 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19" />
6 <application android:icon="@drawable/thumbnail" android:label="@string/app_name" android:name=".XscreensaverApp">
7
8 <service android:label="@string/sproingies_name" android:name=".gen.SproingiesService" android:permission="android.permission.BIND_WALLPAPER">
9  <intent-filter>
10    <action android:name="android.service.wallpaper.WallpaperService" />
11  </intent-filter>
12  <meta-data android:name="android.service.wallpaper" android:resource="@xml/sproingies" />
13 </service>
14 <activity android:label="@string/sproingies_settings" android:name="org.jwz.xscreensaver.gen.SproingiesSettings" android:theme="@android:style/Theme.Light.WallpaperSettings" android:exported="true">
15 </activity>
16
17 <service android:label="@string/superquadrics_name" android:name=".gen.SuperquadricsService" android:permission="android.permission.BIND_WALLPAPER">
18  <intent-filter>
19    <action android:name="android.service.wallpaper.WallpaperService" />
20  </intent-filter>
21  <meta-data android:name="android.service.wallpaper" android:resource="@xml/superquadrics" />
22 </service>
23 <activity android:label="@string/superquadrics_settings" android:name="org.jwz.xscreensaver.gen.SuperquadricsSettings" android:theme="@android:style/Theme.Light.WallpaperSettings" android:exported="true">
24 </activity>
25
26 <service android:label="@string/stonerview_name" android:name=".gen.StonerviewService" android:permission="android.permission.BIND_WALLPAPER">
27  <intent-filter>
28    <action android:name="android.service.wallpaper.WallpaperService" />
29  </intent-filter>
30  <meta-data android:name="android.service.wallpaper" android:resource="@xml/stonerview" />
31 </service>
32 <activity android:label="@string/stonerview_settings" android:name="org.jwz.xscreensaver.gen.StonerviewSettings" android:theme="@android:style/Theme.Light.WallpaperSettings" android:exported="true">
33 </activity>
34
35 <service android:label="@string/unknownpleasures_name" android:name=".gen.UnknownpleasuresService" android:permission="android.permission.BIND_WALLPAPER">
36  <intent-filter>
37    <action android:name="android.service.wallpaper.WallpaperService" />
38  </intent-filter>
39  <meta-data android:name="android.service.wallpaper" android:resource="@xml/unknownpleasures" />
40 </service>
41 <activity android:label="@string/unknownpleasures_settings" android:name="org.jwz.xscreensaver.gen.UnknownpleasuresSettings" android:theme="@android:style/Theme.Light.WallpaperSettings" android:exported="true">
42 </activity>
43
44 <service android:label="@string/bouncingcow_name" android:name=".gen.BouncingcowService" android:permission="android.permission.BIND_WALLPAPER">
45  <intent-filter>
46    <action android:name="android.service.wallpaper.WallpaperService" />
47  </intent-filter>
48  <meta-data android:name="android.service.wallpaper" android:resource="@xml/bouncingcow" />
49 </service>
50 <activity android:label="@string/bouncingcow_settings" android:name="org.jwz.xscreensaver.gen.BouncingcowSettings" android:theme="@android:style/Theme.Light.WallpaperSettings" android:exported="true">
51 </activity>
52
53 <service android:label="@string/hypertorus_name" android:name=".gen.HypertorusService" android:permission="android.permission.BIND_WALLPAPER">
54  <intent-filter>
55    <action android:name="android.service.wallpaper.WallpaperService" />
56  </intent-filter>
57  <meta-data android:name="android.service.wallpaper" android:resource="@xml/hypertorus" />
58 </service>
59 <activity android:label="@string/hypertorus_settings" android:name="org.jwz.xscreensaver.gen.HypertorusSettings" android:theme="@android:style/Theme.Light.WallpaperSettings" android:exported="true">
60 </activity>
61
62 <service android:label="@string/glhanoi_name" android:name=".gen.GlhanoiService" android:permission="android.permission.BIND_WALLPAPER">
63  <intent-filter>
64    <action android:name="android.service.wallpaper.WallpaperService" />
65  </intent-filter>
66  <meta-data android:name="android.service.wallpaper" android:resource="@xml/glhanoi" />
67 </service>
68 <activity android:label="@string/glhanoi_settings" android:name="org.jwz.xscreensaver.gen.GlhanoiSettings" android:theme="@android:style/Theme.Light.WallpaperSettings" android:exported="true">
69 </activity>
70
71 </application>
72
73 <uses-sdk android:minSdkVersion="14" />
74 <uses-feature android:name="android.software.live_wallpaper" android:required="true" />
75 </manifest>