1*d57664e9SAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?> 2*d57664e9SAndroid Build Coastguard Worker 3*d57664e9SAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android" 4*d57664e9SAndroid Build Coastguard Worker package="com.example.wallpapertest"> 5*d57664e9SAndroid Build Coastguard Worker 6*d57664e9SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.SET_WALLPAPER_HINTS"/> 7*d57664e9SAndroid Build Coastguard Worker 8*d57664e9SAndroid Build Coastguard Worker <application android:label="@string/app_name" 9*d57664e9SAndroid Build Coastguard Worker android:theme="@style/AppTheme"> 10*d57664e9SAndroid Build Coastguard Worker <activity android:name=".MainActivity" 11*d57664e9SAndroid Build Coastguard Worker android:label="@string/app_name" 12*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 13*d57664e9SAndroid Build Coastguard Worker <intent-filter> 14*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 15*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.LAUNCHER"/> 16*d57664e9SAndroid Build Coastguard Worker </intent-filter> 17*d57664e9SAndroid Build Coastguard Worker </activity> 18*d57664e9SAndroid Build Coastguard Worker 19*d57664e9SAndroid Build Coastguard Worker <service android:label="@string/test_wallpaper" 20*d57664e9SAndroid Build Coastguard Worker android:name=".TestWallpaper" 21*d57664e9SAndroid Build Coastguard Worker android:permission="android.permission.BIND_WALLPAPER" 22*d57664e9SAndroid Build Coastguard Worker android:enabled="true" 23*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 24*d57664e9SAndroid Build Coastguard Worker <intent-filter> 25*d57664e9SAndroid Build Coastguard Worker <action android:name="android.service.wallpaper.WallpaperService"/> 26*d57664e9SAndroid Build Coastguard Worker </intent-filter> 27*d57664e9SAndroid Build Coastguard Worker <meta-data android:name="android.service.wallpaper" 28*d57664e9SAndroid Build Coastguard Worker android:resource="@xml/test_wallpaper"/> 29*d57664e9SAndroid Build Coastguard Worker </service> 30*d57664e9SAndroid Build Coastguard Worker </application> 31*d57664e9SAndroid Build Coastguard Worker</manifest> 32