mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-21 18:02:42 +01:00
d6e51e0c53
* adjustments * Run generator * Remove multisrc project * add lib dependencies * Remove multisrc from build scripts * Remove build condition
48 lines
2.1 KiB
XML
48 lines
2.1 KiB
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.blogtruyen.BlogTruyenUrlActivity"
|
|
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="m.${SOURCEHOST}" />
|
|
<data android:scheme="${SOURCESCHEME}" />
|
|
|
|
<data android:pathPattern="/tac-gia/..*" />
|
|
<data android:pathPattern="/nhom-dich/..*" />
|
|
|
|
<!--
|
|
Try to ensure that the passed URL is a chapter `c{id}` or a manga `{id}`, with `id`
|
|
being a number.
|
|
-->
|
|
<data android:pathPattern="/c1.*/..*" />
|
|
<data android:pathPattern="/c2.*/..*" />
|
|
<data android:pathPattern="/c3.*/..*" />
|
|
<data android:pathPattern="/c4.*/..*" />
|
|
<data android:pathPattern="/c5.*/..*" />
|
|
<data android:pathPattern="/c6.*/..*" />
|
|
<data android:pathPattern="/c7.*/..*" />
|
|
<data android:pathPattern="/c8.*/..*" />
|
|
<data android:pathPattern="/c9.*/..*" />
|
|
|
|
<data android:pathPattern="/1.*/..*" />
|
|
<data android:pathPattern="/2.*/..*" />
|
|
<data android:pathPattern="/3.*/..*" />
|
|
<data android:pathPattern="/4.*/..*" />
|
|
<data android:pathPattern="/5.*/..*" />
|
|
<data android:pathPattern="/6.*/..*" />
|
|
<data android:pathPattern="/7.*/..*" />
|
|
<data android:pathPattern="/8.*/..*" />
|
|
<data android:pathPattern="/9.*/..*" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|