1*90c8c64dSAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?> 2*90c8c64dSAndroid Build Coastguard Worker<!-- 3*90c8c64dSAndroid Build Coastguard Worker/* 4*90c8c64dSAndroid Build Coastguard Worker** 5*90c8c64dSAndroid Build Coastguard Worker** Copyright 2009, The Android Open Source Project 6*90c8c64dSAndroid Build Coastguard Worker** 7*90c8c64dSAndroid Build Coastguard Worker** Licensed under the Apache License, Version 2.0 (the "License"); 8*90c8c64dSAndroid Build Coastguard Worker** you may not use this file except in compliance with the License. 9*90c8c64dSAndroid Build Coastguard Worker** You may obtain a copy of the License at 10*90c8c64dSAndroid Build Coastguard Worker** 11*90c8c64dSAndroid Build Coastguard Worker** http://www.apache.org/licenses/LICENSE-2.0 12*90c8c64dSAndroid Build Coastguard Worker** 13*90c8c64dSAndroid Build Coastguard Worker** Unless required by applicable law or agreed to in writing, software 14*90c8c64dSAndroid Build Coastguard Worker** distributed under the License is distributed on an "AS IS" BASIS, 15*90c8c64dSAndroid Build Coastguard Worker** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16*90c8c64dSAndroid Build Coastguard Worker** See the License for the specific language governing permissions and 17*90c8c64dSAndroid Build Coastguard Worker** limitations under the License. 18*90c8c64dSAndroid Build Coastguard Worker*/ 19*90c8c64dSAndroid Build Coastguard Worker--> 20*90c8c64dSAndroid Build Coastguard Worker<manifest 21*90c8c64dSAndroid Build Coastguard Worker xmlns:android="http://schemas.android.com/apk/res/android" 22*90c8c64dSAndroid Build Coastguard Worker package="com.example.android.livecubes"> 23*90c8c64dSAndroid Build Coastguard Worker 24*90c8c64dSAndroid Build Coastguard Worker <uses-sdk android:minSdkVersion="7" /> 25*90c8c64dSAndroid Build Coastguard Worker <uses-feature android:name="android.software.live_wallpaper" /> 26*90c8c64dSAndroid Build Coastguard Worker 27*90c8c64dSAndroid Build Coastguard Worker <uses-feature android:name="android.software.live_wallpaper" /> 28*90c8c64dSAndroid Build Coastguard Worker 29*90c8c64dSAndroid Build Coastguard Worker <application 30*90c8c64dSAndroid Build Coastguard Worker android:label="@string/wallpapers" 31*90c8c64dSAndroid Build Coastguard Worker android:icon="@drawable/ic_launcher_wallpaper"> 32*90c8c64dSAndroid Build Coastguard Worker 33*90c8c64dSAndroid Build Coastguard Worker <service 34*90c8c64dSAndroid Build Coastguard Worker android:label="@string/wallpaper_cube1" 35*90c8c64dSAndroid Build Coastguard Worker android:name=".cube1.CubeWallpaper1" 36*90c8c64dSAndroid Build Coastguard Worker android:exported="true" 37*90c8c64dSAndroid Build Coastguard Worker android:permission="android.permission.BIND_WALLPAPER"> 38*90c8c64dSAndroid Build Coastguard Worker <intent-filter> 39*90c8c64dSAndroid Build Coastguard Worker <action android:name="android.service.wallpaper.WallpaperService" /> 40*90c8c64dSAndroid Build Coastguard Worker </intent-filter> 41*90c8c64dSAndroid Build Coastguard Worker <meta-data android:name="android.service.wallpaper" android:resource="@xml/cube1" /> 42*90c8c64dSAndroid Build Coastguard Worker </service> 43*90c8c64dSAndroid Build Coastguard Worker 44*90c8c64dSAndroid Build Coastguard Worker <service 45*90c8c64dSAndroid Build Coastguard Worker android:label="@string/wallpaper_cube2" 46*90c8c64dSAndroid Build Coastguard Worker android:name=".cube2.CubeWallpaper2" 47*90c8c64dSAndroid Build Coastguard Worker android:exported="true" 48*90c8c64dSAndroid Build Coastguard Worker android:permission="android.permission.BIND_WALLPAPER"> 49*90c8c64dSAndroid Build Coastguard Worker <intent-filter> 50*90c8c64dSAndroid Build Coastguard Worker <action android:name="android.service.wallpaper.WallpaperService" /> 51*90c8c64dSAndroid Build Coastguard Worker </intent-filter> 52*90c8c64dSAndroid Build Coastguard Worker <meta-data android:name="android.service.wallpaper" android:resource="@xml/cube2" /> 53*90c8c64dSAndroid Build Coastguard Worker </service> 54*90c8c64dSAndroid Build Coastguard Worker <activity 55*90c8c64dSAndroid Build Coastguard Worker android:label="@string/cube2_settings" 56*90c8c64dSAndroid Build Coastguard Worker android:name=".cube2.CubeWallpaper2Settings" 57*90c8c64dSAndroid Build Coastguard Worker android:theme="@android:style/Theme.Light.WallpaperSettings" 58*90c8c64dSAndroid Build Coastguard Worker android:exported="true"> 59*90c8c64dSAndroid Build Coastguard Worker </activity> 60*90c8c64dSAndroid Build Coastguard Worker 61*90c8c64dSAndroid Build Coastguard Worker </application> 62*90c8c64dSAndroid Build Coastguard Worker</manifest> 63