
* Add Koharu.to * Remove some useless things * Fixed Filters, and More - Fixed Filters/Search not working when query is empty - Changed image resolution default value to match website's - Use `when` instead of kotlin's reflect - Added search by "id", and url intent filter? * Apply Suggestions - Apply vetleledaal's suggestions - Fix UrlActivity? * Apply suggestions * Apply Suggestions * Add files via upload
24 lines
866 B
XML
24 lines
866 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<application>
|
|
<activity
|
|
android:name=".en.koharu.KoharuUrlActivity"
|
|
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="koharu.to"
|
|
android:pathPattern="/g/..*/..*"
|
|
android:scheme="https" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|