-
Notifications
You must be signed in to change notification settings - Fork 24
/
AndroidManifest.xml
61 lines (61 loc) · 3.15 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.jf.Penroser"
android:versionCode="6"
android:versionName="1.2">
<uses-sdk android:minSdkVersion="7"
android:targetSdkVersion="7"/>
<uses-feature android:name="android.software.live_wallpaper" />
<application android:label="@string/app_name"
android:icon="@drawable/icon"
android:name=".PenroserApp"
android:backupAgent=".PenroserBackupAgent"
android:restoreAnyVersion="true">
<activity android:name=".PenroserActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="penroser.com" android:pathPrefix="/preference" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="penroser"/>
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="penroser"/>
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="http" android:host="penroser.com" android:pathPrefix="/preference" />
</intent-filter>
</activity>
<activity android:name=".PenroserColorOptions"
android:label="@string/choose_colors"/>
<activity android:name=".PenroserColorPicker"/>
<activity android:name=".PenroserWallpaperOptions"
android:exported="true"/>
<activity android:name=".PenroserGallery"/>
<service android:name=".PenroserLiveWallpaper"
android:label="Penroser"
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/penroser" />
</service>
<meta-data android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAIZXp-cuYWz3NfODzq6nxF-XZNpVLoFnXYu7Me3g" />
</application>
</manifest>