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