-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
executable file
·132 lines (120 loc) · 5.92 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
executable file
·132 lines (120 loc) · 5.92 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
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
132
<?xml version="1.0" encoding="utf-8"?>
<!-- The package name here must match the Studio namespace given in
WallpaperPickerGoogle gradle config for Studio builds to succeed.
`package_name` in Android.bp overrides this with the actual package name.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.google.android.apps.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.CUSTOMIZE_SYSTEM_UI" />
<uses-permission android:name="android.permission.LAUNCH_MULTI_PANE_SETTINGS_DEEP_LINK" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.READ_WALLPAPER_INTERNAL" />
<uses-permission android:name="android.permission.SET_WALLPAPER"/>
<uses-permission android:name="android.permission.SET_WALLPAPER_COMPONENT" />
<uses-permission android:name="android.permission.BIND_WALLPAPER" />
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="com.android.wallpaper.NOTIFY_ROTATING_WALLPAPER_CHANGED"/>
<uses-permission android:name="android.permission.SET_WALLPAPER_DIM_AMOUNT" />
<uses-permission android:name="android.permission.UPDATE_THEME_SETTINGS" />
<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>
<!-- Intent filter used to query the launcher Activity for grid preview metadata -->
<intent>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
</intent>
<intent>
<action android:name="com.android.photopicker.core.embedded.EmbeddedService.BIND" />
</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:enableOnBackInvokedCallback="false"
android:supportsRtl="true">
<meta-data android:name="com.android.wallpaper.asset.WallpaperGlideModule"
android:value="GlideModule"/>
<activity android:name="com.android.wallpaper.picker.customization.ui.CustomizationPickerActivity"
android:label="@string/app_name"
android:relinquishTaskIdentity="true"
android:resizeableActivity="false"
android:theme="@style/WallpaperTheme.NoBackground"
android:configChanges="assetsPaths|uiMode"
android:exported="true">
</activity>
<activity android:name="com.android.wallpaper.picker.TrampolinePickerActivity"
android:label="@string/app_name"
android:relinquishTaskIdentity="true"
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-alias
android:name="com.android.wallpaper.picker.CategoryPickerActivity"
android:targetActivity="com.android.wallpaper.picker.TrampolinePickerActivity"
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.preview.ui.WallpaperPreviewActivity"
android:excludeFromRecents="true"
android:taskAffinity="@string/multi_crop_task_affinity"
android:resizeableActivity="true"
android:screenOrientation="locked"
android:theme="@style/WallpaperTheme.Preview">
</activity>
<activity android:name="com.android.wallpaper.picker.StandalonePreviewActivity"
android:resizeableActivity="false"
android:relinquishTaskIdentity="true"
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>
</application>
</manifest>