Tachiyomi-Extensions/src/en/guya/AndroidManifest.xml

29 lines
1017 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="eu.kanade.tachiyomi.extension">
<application>
<activity
android:name=".en.guya.GuyaUrlActivity"
android:excludeFromRecents="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="guya.moe"
android:pathPattern="/read/manga/..*"
android:scheme="https" />
2021-03-24 17:46:39 +00:00
<data
android:host="guya.moe"
android:pathPattern="/proxy/..*"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>