
* new multisrc theme: A3MangaTheme * move NgonPhong into A3MangaTheme * fix: ignore scanlation groups from search result * chore: fix lint issues * rename A3MangaTheme to A3Manga, resolve a bunch of suggestions * fix: remove references of theme in the configuration * fix: change the activity name in manifest * fix: final newline * chore: remove gradle file (not used) * fix: rename ngonphong icons * chore: add ocumeo icons
25 lines
1002 B
XML
25 lines
1002 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="eu.kanade.tachiyomi.multisrc.a3manga.A3MangaUrlActivity"
|
|
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="${SOURCEHOST}" />
|
|
<data android:host="*.${SOURCEHOST}" />
|
|
<data android:pathPattern="/truyen-tranh/..*"
|
|
android:scheme="${SOURCESCHEME}" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|