2021-05-20 10:40:16 +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-06-27 17:26:19 +00:00
|
|
|
|
|
|
|
<application>
|
|
|
|
<activity
|
2022-05-11 18:52:34 +00:00
|
|
|
android:name="eu.kanade.tachiyomi.multisrc.bilibili.BilibiliUrlActivity"
|
2021-06-27 17:26:19 +00:00
|
|
|
android:excludeFromRecents="true"
|
2021-09-09 22:25:46 +00:00
|
|
|
android:exported="true"
|
2021-06-27 17:26:19 +00:00
|
|
|
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" />
|
|
|
|
|
2022-11-07 15:14:17 +00:00
|
|
|
<data android:scheme="https" />
|
2021-08-07 12:48:20 +00:00
|
|
|
|
2022-11-07 15:14:17 +00:00
|
|
|
<data android:host="bilibilicomics.com" />
|
|
|
|
<data android:host="m.bilibilicomics.com" />
|
|
|
|
<data android:host="www.bilibilicomics.com" />
|
2021-08-07 12:48:20 +00:00
|
|
|
|
2022-11-07 15:14:17 +00:00
|
|
|
<data android:pathPattern="/detail/mc..*" />
|
2021-06-27 17:26:19 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
2023-08-18 12:58:52 +00:00
|
|
|
</manifest>
|