blob: 6982fc2233b29e6b415a1b6ac1406191c072a930 [file] [log] [blame]
Romain Guya8247652009-10-16 15:08:11 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2008, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11** http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20
21<manifest
22 xmlns:android="http://schemas.android.com/apk/res/android"
23 package="com.android.wallpaper.livepicker">
24
Jeff Hamiltoncaf70a02010-02-12 18:56:26 -060025 <original-package android:name="com.android.wallpaper.livepicker" />
26
Romain Guya8247652009-10-16 15:08:11 -070027 <uses-permission android:name="android.permission.SET_WALLPAPER_COMPONENT" />
28 <uses-permission android:name="android.permission.BIND_WALLPAPER" />
Tony Wickhame27899f2016-03-22 11:07:46 -070029 <uses-permission android:name="android.permission.SET_WALLPAPER" />
Ching-Sung Lidc5274a2020-04-24 11:07:29 +080030 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
Adam Cohend19ce7b2010-12-21 17:25:31 -080031
Dario Freni065d9132018-04-14 23:00:29 +010032 <uses-sdk android:minSdkVersion="14"/>
33
Romain Guya8247652009-10-16 15:08:11 -070034 <application
Romain Guya8247652009-10-16 15:08:11 -070035 android:label="@string/application_name"
Amith Yamasani489e75f2013-08-07 16:57:16 -070036 android:icon="@mipmap/ic_launcher_live_wallpaper"
37 android:supportsRtl="true" >
Romain Guya8247652009-10-16 15:08:11 -070038
Adam Lesinskid6bb5142010-12-06 15:42:03 -080039 <activity android:name="LiveWallpaperActivity"
Adam Cohend19ce7b2010-12-21 17:25:31 -080040 android:label="@string/live_wallpaper_picker_label"
Adam Lesinski494767f2010-12-01 17:00:10 -080041 android:theme="@style/LivePickerTheme"
Peiyong Lin0058e822018-02-28 18:05:02 -080042 android:colorMode="wideColorGamut"
Kunhung Lia98c32e2020-02-27 09:53:31 +080043 android:screenOrientation="portrait"
Adam Lesinski494767f2010-12-01 17:00:10 -080044 android:hardwareAccelerated="true">
Romain Guya8247652009-10-16 15:08:11 -070045 <intent-filter>
46 <action android:name="android.service.wallpaper.LIVE_WALLPAPER_CHOOSER" />
47 <action android:name="android.intent.action.SET_WALLPAPER" />
48 <category android:name="android.intent.category.DEFAULT" />
49 </intent-filter>
Adam Cohence30aac2011-01-18 15:13:26 -080050 <meta-data android:name="android.wallpaper.preview"
51 android:resource="@xml/wallpaper_picker_preview" />
Romain Guya8247652009-10-16 15:08:11 -070052 </activity>
53
Dianne Hackborn3330e412012-04-19 18:00:56 -070054 <activity android:name="LiveWallpaperChange"
55 android:label="@string/live_wallpaper_preview_title"
Peiyong Lin0058e822018-02-28 18:05:02 -080056 android:colorMode="wideColorGamut"
Kunhung Lia98c32e2020-02-27 09:53:31 +080057 android:screenOrientation="portrait"
Dianne Hackborn3330e412012-04-19 18:00:56 -070058 android:theme="@style/Preview">
59 <intent-filter>
60 <action android:name="android.service.wallpaper.CHANGE_LIVE_WALLPAPER" />
61 <category android:name="android.intent.category.DEFAULT" />
62 </intent-filter>
63 </activity>
64
Romain Guy2f26cce2009-11-08 13:51:50 -080065 <activity android:name="LiveWallpaperPreview"
Romain Guy2f26cce2009-11-08 13:51:50 -080066 android:label="@string/live_wallpaper_preview_title"
Peiyong Lin0058e822018-02-28 18:05:02 -080067 android:colorMode="wideColorGamut"
Kunhung Lia98c32e2020-02-27 09:53:31 +080068 android:screenOrientation="portrait"
Richard Chou00e8d9a2018-11-21 13:46:10 +080069 android:theme="@style/Preview"/>
Romain Guya8247652009-10-16 15:08:11 -070070 </application>
71
72</manifest>