Tachiyomi-Extensions/src/en/allanime/AndroidManifest.xml
AwkwardPeak7 a7b59aecd4
AllAnime -> AllManga: update domain & small refactor (#4576)
* AllAnime -> AllManga: update domain & small refactor

* preserve id

* potential issue with img quality and cache?
2024-09-15 20:21:59 +01:00

23 lines
891 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
android:name=".en.allanime.AllMangaUrlActivity"
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="allmanga.to"/>
<data android:scheme="https"/>
<data android:pathPattern="/manga/..*"/>
<data android:pathPattern="/read/..*"/>
</intent-filter>
</activity>
</application>
</manifest>