
* comply with #5214 * rm not needed AndroidManifest.xml * [CI SKIP] add info about AndroidManifest.xml * Update CONTRIBUTING.md Co-authored-by: arkon <arkon@users.noreply.github.com>
19 lines
819 B
XML
19 lines
819 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=".Hentai2ReadActivity"
|
|
android:theme="@android:style/Theme.NoDisplay"
|
|
android:excludeFromRecents="true">
|
|
<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:scheme="https"
|
|
android:host="hentai2read.com"
|
|
android:pathPattern="/..*"/>
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|