Tachiyomi-Extensions/src/ru/remanga/AndroidManifest.xml
Eugene 077b90b80e
Altername and open out for [RU] source (#6896)
* Add Altername

* OpenOut

* RenameActivity
2021-05-08 06:25:49 -04:00

25 lines
846 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=".ru.remanga.RemangaActivity"
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" />
<!-- RemangaActivity sites can be added here. -->
<data
android:host="remanga.org"
android:pathPattern="/manga/..*"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>