26 lines
901 B
XML
26 lines
901 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<uses-feature android:name="android.software.live_wallpaper" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/wallpaper_label"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
<service
|
|
android:exported="true"
|
|
android:name=".FilamentLiveWallpaper"
|
|
android:label="@string/wallpaper_label"
|
|
android:permission="android.permission.BIND_WALLPAPER">
|
|
<intent-filter>
|
|
<action android:name="android.service.wallpaper.WallpaperService" />
|
|
</intent-filter>
|
|
<meta-data android:name="android.service.wallpaper" android:resource="@xml/wallpaper" />
|
|
</service>
|
|
</application>
|
|
|
|
</manifest>
|