Tachiyomi-Extensions/src/all/mangadex/AndroidManifest.xml
jopejoe1 2b5359ca26
Mangadex: Add support for MDLists url intent (#11024)
* Update build.gradle

* Added list support

* Add error message for empty list

* Update AndroidManifest.xml
2022-03-06 09:48:27 -05:00

31 lines
1.2 KiB
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=".all.mangadex.MangadexUrlActivity"
android:excludeFromRecents="true"
android:exported="true"
android:theme="@android:style/Theme.NoDisplay">
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:host="mangadex.org" />
<data android:scheme="https" />
<data android:pathPattern="/title/..*" />
<data android:pathPattern="/manga/..*" />
<data android:pathPattern="/chapter/..*" />
<data android:pathPattern="/group/..*" />
<data android:pathPattern="/author/..*" />
<data android:pathPattern="/user/..*" />
<data android:pathPattern="/list/..*" />
</intent-filter>
</activity>
</application>
</manifest>