Draff d61cbfc0c1
All checks were successful
CI / Prepare job (push) Successful in 10s
CI / Build multisrc modules (push) Successful in 11m19s
CI / Build individual modules (push) Successful in 2m2s
CI / Publish repo (push) Successful in 2m41s
Add missing changes from keiyoushi
2024-01-16 02:56:21 +00:00

23 lines
933 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.multisrc.a3manga.A3MangaUrlActivity"
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="${SOURCEHOST}" />
<data android:host="*.${SOURCEHOST}" />
<data android:pathPattern="/truyen-tranh/..*"
android:scheme="${SOURCESCHEME}" />
</intent-filter>
</activity>
</application>
</manifest>