Tachiyomi-Extensions/src/vi/truyentranh8/AndroidManifest.xml
beerpsi 84aaf70e0e
New source: Truyện Tranh 8 (#12846)
* New source: Truyện Tranh 8

* Removing trailing space from user agent
2022-08-05 09:27:17 -04:00

24 lines
912 B
XML

<?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=".vi.truyentranh8.TruyenTranh8UrlActivity"
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="truyentranh86.com"
android:pathPattern="/truyen-tranh/..*"
android:scheme="http" />
</intent-filter>
</activity>
</application>
</manifest>