
* Add latestUpdates, popularManga and mangaDetails to UnionMangas * Add initial chapter request configuration * Fix client headers request * Add fetch chapter * Fix chapter list parse * Add search impl * Fix chapter url * Rename hash function * Add utils functions * Add pageList * typo * Cleanup. * Add intent query * Refactoring * Remove password hardcode * Replace Exception by RuntimeException * throws message exception to user * Add rateLimit * Add Pageable class * Cleanup * Remove unicodes * Remove nullable dto properties * Rename variables * Replace 'data class' with regular 'class' * Remove try/catch. Let exceptions be thrown * Fix search request * Cleanup --------- Co-authored-by: bapeey <90949336+bapeey@users.noreply.github.com>
26 lines
892 B
XML
26 lines
892 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<application>
|
|
<activity
|
|
android:name=".all.unionmangas.UnionMangasUrlActivity"
|
|
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="https://unionmangas.xyz" />
|
|
|
|
<data android:scheme="https"/>
|
|
<data android:pathPattern="/manga-br/..*"/>
|
|
|
|
<data android:scheme="https"/>
|
|
<data android:pathPattern="/italy/..*"/>
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|