1<?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 24 <original-package android:name="com.android.wallpaper" /> 25 26 <uses-feature android:name="android.software.live_wallpaper" /> 27 28 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> 29 <uses-permission android:name="android.permission.CAMERA" /> 30 31 <application 32 android:label="@string/wallpapers" 33 android:icon="@drawable/ic_launcher_wallpaper"> 34 35 <activity 36 android:label="@string/clock_settings" 37 android:name="com.android.wallpaper.polarclock.PolarClockSettings" 38 android:theme="@android:style/Theme" 39 android:exported="true" 40 android:enabled="@bool/config_enable_polar_clock_wallpaper"> 41 </activity> 42 43 <service 44 android:label="@string/wallpaper_clock" 45 android:name="com.android.wallpaper.polarclock.PolarClockWallpaper" 46 android:permission="android.permission.BIND_WALLPAPER" 47 android:enabled="@bool/config_enable_polar_clock_wallpaper"> 48 <intent-filter> 49 <action android:name="android.service.wallpaper.WallpaperService" /> 50 </intent-filter> 51 <meta-data android:name="android.service.wallpaper" android:resource="@xml/polar_clock" /> 52 </service> 53 54 <!-- RE-ENABLE WHEN #2246948 IS FIXED --> 55 <!-- <service 56 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" /> 63 </service> --> 64 65 </application> 66 67</manifest> 68