2021-02-11 15:48:48 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-08-18 12:58:52 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2021-02-11 15:48:48 +00:00
|
|
|
<application>
|
|
|
|
<activity android:name="eu.kanade.tachiyomi.multisrc.mangadventure.MangAdventureActivity"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay"
|
2021-09-09 22:25:46 +00:00
|
|
|
android:exported="true"
|
2021-02-11 15:48:48 +00:00
|
|
|
android:excludeFromRecents="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2021-07-31 17:05:55 +00:00
|
|
|
<data android:host="${SOURCEHOST}"
|
2021-02-11 15:48:48 +00:00
|
|
|
android:pathPattern="/reader/..*"
|
2021-07-31 17:05:55 +00:00
|
|
|
android:scheme="${SOURCESCHEME}" />
|
|
|
|
<data android:host="www.${SOURCEHOST}"
|
2021-02-11 15:48:48 +00:00
|
|
|
android:pathPattern="/reader/..*"
|
2021-07-31 17:05:55 +00:00
|
|
|
android:scheme="${SOURCESCHEME}" />
|
2021-02-11 15:48:48 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|