-
Notifications
You must be signed in to change notification settings - Fork 2
/
AndroidManifest.xml
executable file
·74 lines (62 loc) · 2.54 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fr.ravenfeld.livewallpaper.slideshow"
android:versionCode="1"
android:versionName="1.0" >
<uses-feature android:glEsVersion="0x00020000" />
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="18" />
<uses-feature android:name="android.software.live_wallpaper" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:largeHeap="true">
<!-- Wallpaper Service -->
<service
android:name="fr.ravenfeld.livewallpaper.slideshow.Service"
android:label="@string/lwp_name"
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/wallpaper" />
</service>
<!-- Wallpaper Settings -->
<activity
android:name="fr.ravenfeld.livewallpaper.slideshow.Settings"
android:exported="true"
android:hardwareAccelerated="false"
android:label="@string/app_name"
>
<intent-filter>
<category android:name="android.intent.category.PREFERENCE" />
</intent-filter>
</activity>
<!-- Wallpaper Preview -->
<activity
android:name="fr.ravenfeld.livewallpaper.slideshow.Preview"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:exported="false"
android:icon="@drawable/ic_chooser"
android:name="com.ipaulpro.afilechooser.FileChooserActivity"
android:label="@string/choose_file" >
<intent-filter>
<action android:name="android.intent.action.GET_CONTENT" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.OPENABLE" />
<data android:mimeType="*/*" />
</intent-filter>
</activity>
</application>
</manifest>