-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
72 lines (64 loc) · 2.8 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.geithonline.wallpaperdesigner"
android:versionCode="67"
android:versionName="6.7" >
<uses-sdk
android:minSdkVersion="23"
android:targetSdkVersion="29" />
<!-- For downloading Settings from Internet -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- For Accessing Gallery images -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<!-- For Writing Debug images -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- For Accessing Gallery images across users -->
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
<!-- For upgrade to Pro Version -->
<uses-permission android:name="com.android.vending.BILLING" />
<!-- For directly setting the wallpaper from within the app -->
<uses-permission android:name="android.permission.SET_WALLPAPER" />
<uses-feature
android:name="android.software.live_wallpaper"
android:required="true" >
</uses-feature>
<application
android:name="de.geithonline.wallpaperdesigner.WallpaperDesigner"
android:allowBackup="true"
android:description="@string/wallpaper_description"
android:icon="@drawable/icon"
android:usesCleartextTraffic="true"
android:label="@string/app_name"
android:requestLegacyExternalStorage="true"
android:largeHeap="true" >
<activity
android:name=".PreferencesActivity"
android:exported="true"
android:label="@string/app_name"
android:theme="@style/Theme.BatteryLWPGrayOrange" >
<intent-filter>
<action android:name="de.geithonline.wallpaperdesigner.PreferencesActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/Theme.BatteryLWPGrayOrange" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".HelpPageWebView"
android:label="Help-Page"
android:theme="@style/Theme.BatteryLWPGrayOrange" >
</activity>
<activity
android:name=".ExampleSettingsUserView"
android:label="@string/title_activity_user_settings_view"
android:theme="@style/Theme.BatteryLWPGrayOrange" >
</activity>
</application>
</manifest>