blob: cd490ac80928d17be328c88c2a76485405b6f09d [file] [log] [blame]
Romain Guy55a384c2009-08-12 10:58:02 -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<manifest
21 xmlns:android="http://schemas.android.com/apk/res/android"
22 package="com.android.wallpaper">
23
Jeff Hamilton4f5ac8c2010-02-12 18:56:26 -060024 <original-package android:name="com.android.wallpaper" />
25
Romain Guy4aa06a92010-01-27 16:37:21 -080026 <uses-feature android:name="android.software.live_wallpaper" />
27
Romain Guya56ce012009-10-13 17:05:45 -070028 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
Romain Guy524a6582009-11-05 13:10:02 -080029 <uses-permission android:name="android.permission.CAMERA" />
Romain Guya56ce012009-10-13 17:05:45 -070030
Romain Guy55a384c2009-08-12 10:58:02 -070031 <application
32 android:label="@string/wallpapers"
33 android:icon="@drawable/ic_launcher_wallpaper">
34
Romain Guy1a430b82009-08-28 17:05:02 -070035 <activity
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -070036 android:label="@string/clock_settings"
37 android:name="com.android.wallpaper.polarclock.PolarClockSettings"
Daniel Sandler8e906582009-10-21 10:28:50 -040038 android:theme="@android:style/Theme"
Winson Chung14d28b22011-09-14 14:44:24 -070039 android:exported="true"
40 android:enabled="@bool/config_enable_polar_clock_wallpaper">
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -070041 </activity>
42
Romain Guye04d27e2009-08-21 16:30:52 -070043 <service
Romain Guya7cbc262009-08-12 15:24:53 -070044 android:label="@string/wallpaper_clock"
45 android:name="com.android.wallpaper.polarclock.PolarClockWallpaper"
Winson Chung14d28b22011-09-14 14:44:24 -070046 android:permission="android.permission.BIND_WALLPAPER"
47 android:enabled="@bool/config_enable_polar_clock_wallpaper">
Romain Guya7cbc262009-08-12 15:24:53 -070048 <intent-filter>
49 <action android:name="android.service.wallpaper.WallpaperService" />
50 </intent-filter>
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -070051 <meta-data android:name="android.service.wallpaper" android:resource="@xml/polar_clock" />
Romain Guya7cbc262009-08-12 15:24:53 -070052 </service>
53
Romain Guy10f19662009-11-18 21:19:22 +010054 <!-- RE-ENABLE WHEN #2246948 IS FIXED -->
55 <!-- <service
Romain Guy524a6582009-11-05 13:10:02 -080056 android:label="@string/wallpaper_walkaround"
57 android:name="com.android.wallpaper.walkaround.WalkAroundWallpaper"
58 android:permission="android.permission.BIND_WALLPAPER">
59 <intent-filter>
60 <action android:name="android.service.wallpaper.WallpaperService" />
61 </intent-filter>
62 <meta-data android:name="android.service.wallpaper" android:resource="@xml/walkaround" />
Romain Guy10f19662009-11-18 21:19:22 +010063 </service> -->
Romain Guy524a6582009-11-05 13:10:02 -080064
Romain Guy55a384c2009-08-12 10:58:02 -070065 </application>
66
67</manifest>