h-hyuuga eaf36bacd3
Facilitate Deeplinking for multisrc extensions (#6994)
* ThemeSourceGenerator: Support for default AndroidManifest.xml + Added extra manifestPlaceholders

* WPMangaReader: Add support for search by url

* WPMangaReader: Add WPMangaReaderUrlActivity.kt

* WPMangaReader: GSNation needs to set title in mangaParseDetails

* Bump WPMangaReader

* Bug fix: Add null guard when generating manifest placeholders

* WPMangaReader: Support links directly to chapters

* ThemeSourceGenerator: Remove placeholders unneeded for making intents
2021-05-14 17:54:19 -04:00

32 lines
1.4 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="eu.kanade.tachiyomi.multisrc.wpmangareader.WPMangaReaderUrlActivity"
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" />
<data
android:host="${SOURCEHOST}"
android:pathPattern="/.*/..*"
android:scheme="${SOURCESCHEME}" />
</intent-filter>
<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="${SOURCEHOST}"
android:pathPattern="/..*"
android:scheme="${SOURCESCHEME}" />
</intent-filter>
</activity>
</application>
</manifest>