blob: e5904fa89a0832247d5bd89121b6a0c20ee858e7 [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" />
Adam Cohend19ce7b2010-12-21 17:25:31 -080030
Romain Guya8247652009-10-16 15:08:11 -070031 <application
Romain Guya8247652009-10-16 15:08:11 -070032 android:label="@string/application_name"
Amith Yamasani489e75f2013-08-07 16:57:16 -070033 android:icon="@mipmap/ic_launcher_live_wallpaper"
34 android:supportsRtl="true" >
Romain Guya8247652009-10-16 15:08:11 -070035
Adam Lesinskid6bb5142010-12-06 15:42:03 -080036 <activity android:name="LiveWallpaperActivity"
Adam Cohend19ce7b2010-12-21 17:25:31 -080037 android:label="@string/live_wallpaper_picker_label"
Adam Lesinski494767f2010-12-01 17:00:10 -080038 android:theme="@style/LivePickerTheme"
Peiyong Lin0058e822018-02-28 18:05:02 -080039 android:colorMode="wideColorGamut"
Adam Lesinski494767f2010-12-01 17:00:10 -080040 android:hardwareAccelerated="true">
Romain Guya8247652009-10-16 15:08:11 -070041 <intent-filter>
42 <action android:name="android.service.wallpaper.LIVE_WALLPAPER_CHOOSER" />
43 <action android:name="android.intent.action.SET_WALLPAPER" />
44 <category android:name="android.intent.category.DEFAULT" />
45 </intent-filter>
Adam Cohence30aac2011-01-18 15:13:26 -080046 <meta-data android:name="android.wallpaper.preview"
47 android:resource="@xml/wallpaper_picker_preview" />
Romain Guya8247652009-10-16 15:08:11 -070048 </activity>
49
Dianne Hackborn3330e412012-04-19 18:00:56 -070050 <activity android:name="LiveWallpaperChange"
51 android:label="@string/live_wallpaper_preview_title"
Peiyong Lin0058e822018-02-28 18:05:02 -080052 android:colorMode="wideColorGamut"
Dianne Hackborn3330e412012-04-19 18:00:56 -070053 android:theme="@style/Preview">
54 <intent-filter>
55 <action android:name="android.service.wallpaper.CHANGE_LIVE_WALLPAPER" />
56 <category android:name="android.intent.category.DEFAULT" />
57 </intent-filter>
58 </activity>
59
Romain Guy2f26cce2009-11-08 13:51:50 -080060 <activity android:name="LiveWallpaperPreview"
Romain Guy2f26cce2009-11-08 13:51:50 -080061 android:label="@string/live_wallpaper_preview_title"
Peiyong Lin0058e822018-02-28 18:05:02 -080062 android:colorMode="wideColorGamut"
Joe Onoratodf62d4c2010-10-30 14:26:02 -070063 android:theme="@style/Preview" />
Romain Guya8247652009-10-16 15:08:11 -070064 </application>
65
66</manifest>