Tachiyomi-Extensions/src/en/kmanga/AndroidManifest.xml
manti a7408115ed
Add K Manga (#10498)
* Add K Manga

* apply fixes, different and consistent thumbnail, better search

* simplify

* manifest, deeplink

* exception message
2025-10-03 00:00:19 +01:00

23 lines
877 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
android:name="eu.kanade.tachiyomi.extension.en.kmanga.KMangaUrlActivity"
android:excludeFromRecents="true"
android:exported="true"
android:theme="@android:style/Theme.NoDisplay">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="kmanga.kodansha.com"
android:pathPrefix="/title/"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>