SetAsWallpaper/app/src/main/AndroidManifest.xml
2021-08-08 22:58:08 +02:00

22 lines
848 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.crystalyx.setaswallpaper">
<application
android:allowBackup="false"
android:label="Set as wallpaper"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen">
<activity android:name=".SetWallpaperActivity">
<intent-filter>
<action android:name="android.intent.action.SEND"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="image/*"/>
</intent-filter>
</activity>
</application>
</manifest>