2024-02-08 06:30:57 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2024-04-28 06:51:04 +00:00
|
|
|
|
2024-02-08 06:30:57 +00:00
|
|
|
<application>
|
|
|
|
<activity
|
2024-04-28 06:51:04 +00:00
|
|
|
android:name="eu.kanade.tachiyomi.multisrc.galleryadults.GalleryAdultsUrlActivity"
|
2024-02-08 06:30:57 +00:00
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:exported="true"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2024-04-28 06:51:04 +00:00
|
|
|
|
2024-02-08 06:30:57 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data
|
2024-04-28 06:51:04 +00:00
|
|
|
android:host="${SOURCEHOST}"
|
|
|
|
android:pathPattern="/g.*/..*/"
|
|
|
|
android:scheme="${SOURCESCHEME}" />
|
2024-02-08 06:30:57 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|