-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
99 lines (89 loc) · 3.81 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
99 lines (89 loc) · 3.81 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.axion.wallpapereffects"
android:sharedUserId="android.uid.system">
<uses-sdk android:minSdkVersion="36" android:targetSdkVersion="36" />
<uses-permission android:name="android.permission.SET_WALLPAPER" />
<uses-permission android:name="android.permission.READ_WALLPAPER_INTERNAL" />
<uses-permission android:name="android.permission.SUBSCRIBE_TO_KEYGUARD_LOCKED_STATE" />
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
<uses-feature android:name="android.software.live_wallpaper" android:required="true" />
<application
android:name=".WallpaperEffectsApplication"
android:label="AxWallpaperEffects"
android:allowBackup="false"
android:persistent="true"
android:largeHeap="true"
android:directBootAware="true">
<service
android:name=".service.AtmosphereService"
android:exported="true"
android:label="Atmosphere"
android:configChanges="uiMode"
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/atmosphere" />
</service>
<service
android:name=".service.GlassService"
android:exported="true"
android:label="Glass"
android:configChanges="uiMode"
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/glass" />
</service>
<service
android:name=".service.WeatherService"
android:exported="true"
android:label="Weather"
android:configChanges="uiMode"
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/weather" />
</service>
<service
android:name=".service.MagicPortraitService"
android:exported="true"
android:label="Magic Portrait"
android:configChanges="uiMode"
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/magicportrait" />
</service>
<service
android:name=".service.CinematicService"
android:exported="true"
android:label="Cinematic"
android:configChanges="uiMode"
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/cinematic" />
</service>
<service
android:name=".service.WallpaperDepthService"
android:exported="false"
android:directBootAware="true" />
</application>
</manifest>