2021-06-08 16:11:43 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="eu.kanade.tachiyomi.extension">
|
|
|
|
|
|
|
|
<application>
|
|
|
|
<activity
|
2021-06-14 10:21:43 +00:00
|
|
|
android:name="eu.kanade.tachiyomi.multisrc.guya.GuyaUrlActivity"
|
2021-06-08 16:11:43 +00:00
|
|
|
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
|
2021-06-14 10:21:43 +00:00
|
|
|
android:host="${SOURCEHOST}"
|
|
|
|
android:pathPattern="/.*/.*/..*"
|
|
|
|
android:scheme="${SOURCESCHEME}" />
|
2021-06-08 16:11:43 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
2021-06-14 10:21:43 +00:00
|
|
|
</manifest>
|