-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
executable file
·131 lines (116 loc) · 5.53 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.android.wallpaper">
<!-- Custom permission to enforce that only this app can notify the running live wallpaper that
the rotating wallpaper image data changed. -->
<permission android:name="com.android.wallpaper.NOTIFY_ROTATING_WALLPAPER_CHANGED"
android:protectionLevel="signature"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.SET_WALLPAPER"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="com.android.wallpaper.NOTIFY_ROTATING_WALLPAPER_CHANGED"/>
<queries>
<!-- Specific intents Wallpaper picker query for -->
<!-- Intent filter with action SET_WALLPAPER -->
<intent>
<action android:name="android.intent.action.SET_WALLPAPER" />
</intent>
<!-- Intent filter with action GET_CONTENT and data's mimeType as "image/*" -->
<intent>
<action android:name="android.intent.action.GET_CONTENT" />
<data android:mimeType="image/*" />
</intent>
<!-- Intent filter with action VIEW -->
<intent>
<action android:name="android.intent.action.VIEW" />
</intent>
<!-- Intent filter with action WallpaperService (live wallpaper interface) -->
<intent>
<action android:name="android.service.wallpaper.WallpaperService" />
</intent>
<!-- Intent filter with action used to discover partner -->
<intent>
<action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION" />
</intent>
</queries>
<application
tools:replace="android:icon,android:name,android:appComponentFactory"
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
android:allowBackup="true"
android:icon="@mipmap/product_logo_wallpapers_launcher_color_48"
android:label="@string/app_name"
android:name="com.android.wallpaper.picker.WallpapersApplication"
android:requiredForAllUsers="true"
android:restoreAnyVersion="true"
android:supportsRtl="true">
<meta-data android:name="com.android.wallpaper.asset.WallpaperGlideModule"
android:value="GlideModule"/>
<activity android:name="com.android.wallpaper.picker.TopLevelPickerActivity"
android:label="@string/app_name"
android:theme="@style/WallpaperTheme.NoBackground"
android:resizeableActivity="false"
android:exported="false">
</activity>
<activity android:name="com.android.wallpaper.picker.CustomizationPickerActivity"
android:label="@string/app_name"
android:resizeableActivity="false"
android:theme="@style/WallpaperTheme.NoBackground"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.SET_WALLPAPER"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name="com.android.wallpaper.picker.DeepLinkActivity"
android:theme="@style/WallpaperTheme.NoBackground"
android:exported="true">
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="g.co"
android:pathPrefix="/wallpaper"
android:scheme="https" />
</intent-filter>
</activity>
<activity-alias
android:name="com.android.wallpaper.picker.CategoryPickerActivity"
android:targetActivity="com.android.wallpaper.picker.CustomizationPickerActivity"
android:label="@string/app_name"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
</intent-filter>
</activity-alias>
<activity android:name="com.android.wallpaper.picker.individual.IndividualPickerActivity"
android:label="@string/app_name"
android:theme="@style/WallpaperTheme"
android:resizeableActivity="false"
android:parentActivityName="com.android.wallpaper.picker.TopLevelPickerActivity">
</activity>
<activity android:name="com.android.wallpaper.picker.PreviewActivity"
android:resizeableActivity="false"
android:theme="@style/WallpaperTheme.Preview">
</activity>
<activity android:name="com.android.wallpaper.picker.StandalonePreviewActivity"
android:resizeableActivity="false"
android:theme="@style/WallpaperTheme.Preview"
android:exported="true">
<intent-filter>
<action android:name="android.service.wallpaper.CROP_AND_SET_WALLPAPER"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="image/*"/>
</intent-filter>
</activity>
<activity android:name="com.android.wallpaper.picker.ViewOnlyPreviewActivity"
android:resizeableActivity="false"
android:theme="@style/WallpaperTheme.Preview">
</activity>
</application>
</manifest>