blob: f0f7024a0cb03821d157df9068853fcdae9cfd98 [file] [log] [blame]
Jon Miranda16ea1b12017-12-12 14:52:48 -08001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:tools="http://schemas.android.com/tools"
4 package="com.android.wallpaper">
5
Jon Miranda16ea1b12017-12-12 14:52:48 -08006 <!-- Custom permission to enforce that only this app can notify the running live wallpaper that
7 the rotating wallpaper image data changed. -->
8 <permission
9 android:name="com.android.wallpaper.NOTIFY_ROTATING_WALLPAPER_CHANGED"
10 android:protectionLevel="signature"/>
11
12 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
13 <uses-permission android:name="android.permission.INTERNET" />
14 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Santiago Etchebeheree5e05842019-02-13 16:58:07 -080015 <uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
Jon Miranda16ea1b12017-12-12 14:52:48 -080016 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
17 <uses-permission android:name="android.permission.SET_WALLPAPER" />
18 <uses-permission android:name="android.permission.WAKE_LOCK" />
19 <uses-permission
20 android:name="com.android.wallpaper.NOTIFY_ROTATING_WALLPAPER_CHANGED" />
21
Santiago Etchebehere7cadb222020-06-29 12:00:32 -070022 <queries>
23 <intent>
24 <action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION"/>
25 </intent>
26 <intent>
27 <action android:name="android.service.wallpaper.WallpaperService"/>
28 </intent>
29 </queries>
30
Jon Miranda16ea1b12017-12-12 14:52:48 -080031 <application
Santiago Etchebehere8dbefef2019-08-01 17:32:19 -070032 tools:replace="android:icon,android:name"
Jon Miranda16ea1b12017-12-12 14:52:48 -080033 android:allowBackup="true"
34 android:icon="@mipmap/product_logo_wallpapers_launcher_color_48"
35 android:label="@string/app_name"
36 android:name="com.android.wallpaper.picker.WallpapersApplication"
37 android:requiredForAllUsers="true"
38 android:restoreAnyVersion="true"
Jon Mirandaf431dc92018-03-13 14:39:55 -070039 android:supportsRtl="true"
40 android:extractNativeLibs="false">
Jon Miranda16ea1b12017-12-12 14:52:48 -080041
42 <meta-data
43 android:name="com.android.wallpaper.asset.WallpaperGlideModule"
44 android:value="GlideModule" />
45
46 <activity android:name="com.android.wallpaper.picker.TopLevelPickerActivity"
47 android:label="@string/app_name"
Santiago Etchebeheree945bbe2020-03-11 17:32:43 -070048 android:theme="@style/WallpaperTheme.NoBackground"
Santiago Etchebehere312c2452019-11-07 14:24:56 -080049 android:resizeableActivity="false">
Jon Miranda16ea1b12017-12-12 14:52:48 -080050 <intent-filter>
51 <action android:name="android.intent.action.SET_WALLPAPER"/>
52 <category android:name="android.intent.category.DEFAULT"/>
53 </intent-filter>
54 </activity>
55
Chuck Liaof6b4b192020-08-07 02:31:32 +080056 <activity android:name="com.android.wallpaper.picker.DeepLinkActivity"
57 android:theme="@style/WallpaperTheme.NoBackground">
58 <intent-filter android:autoVerify="true">
59 <action android:name="android.intent.action.VIEW" />
60 <category android:name="android.intent.category.DEFAULT" />
61 <category android:name="android.intent.category.BROWSABLE" />
62 <data
63 android:host="g.co"
64 android:pathPrefix="/wallpaper"
65 android:scheme="https" />
66 </intent-filter>
67 </activity>
68
Jon Miranda16ea1b12017-12-12 14:52:48 -080069 <activity-alias
70 android:name="com.android.wallpaper.picker.CategoryPickerActivity"
71 android:targetActivity="com.android.wallpaper.picker.TopLevelPickerActivity"
72 android:label="@string/app_name">
73 <intent-filter>
74 <action android:name="android.intent.action.MAIN"/>
Jon Miranda16ea1b12017-12-12 14:52:48 -080075 </intent-filter>
76 </activity-alias>
77
78 <activity android:name="com.android.wallpaper.picker.individual.IndividualPickerActivity"
79 android:label="@string/app_name"
80 android:theme="@style/WallpaperTheme"
Santiago Etchebehere312c2452019-11-07 14:24:56 -080081 android:resizeableActivity="false"
Jon Miranda16ea1b12017-12-12 14:52:48 -080082 android:parentActivityName="com.android.wallpaper.picker.TopLevelPickerActivity">
Jon Miranda16ea1b12017-12-12 14:52:48 -080083 </activity>
84
85 <activity android:name="com.android.wallpaper.picker.PreviewActivity"
86 android:resizeableActivity="false"
87 android:theme="@style/WallpaperTheme.Preview">
88 </activity>
89
90 <activity android:name="com.android.wallpaper.picker.StandalonePreviewActivity"
91 android:resizeableActivity="false"
92 android:theme="@style/WallpaperTheme.Preview">
93 <intent-filter>
94 <action android:name="android.service.wallpaper.CROP_AND_SET_WALLPAPER" />
95 <category android:name="android.intent.category.DEFAULT" />
96 <data android:mimeType="image/*" />
97 </intent-filter>
98 </activity>
99
100 <activity android:name="com.android.wallpaper.picker.ViewOnlyPreviewActivity"
101 android:resizeableActivity="false"
102 android:theme="@style/WallpaperTheme.Preview">
103 </activity>
104
105 <service
106 android:name="com.android.wallpaper.module.NoBackupImageWallpaper"
107 android:enabled="@bool/enable_no_backup_image_wallpaper"
108 android:label="@string/no_backup_image_wallpaper_label"
109 android:permission="android.permission.BIND_WALLPAPER"
110 android:process=":live_wallpaper">
111 <intent-filter>
112 <action android:name="android.service.wallpaper.WallpaperService" />
113 </intent-filter>
114 <meta-data
115 android:name="android.service.wallpaper"
116 android:resource="@xml/no_backup_image_wallpaper" />
117 </service>
118 </application>
119
120</manifest>