
* feat: Create Tsuki Mangás base * feat: Implement popular manga page * feat: Implement latest updates page * feat: Implement search page * feat: Implement manga details page * fix: Fix URL intent handler * fix: Fix webview url * feat: Implement chapter list page * feat: Implement page list * fix: Fix chapter URLs Kotlinx-serialization moment * feat: Apply rate limit to image CDNs * refactor: Make the API path a separate constant * chore: Add source icon ... Actually they don't have a icon yet, they're just using the "TSUKI" text, so I did the same in the icon. it may be updated later, when they create a proper icon. * fix: Fix random http 404 in pages * fix: Prevent multiple wrong requests * refactor: Apply suggestion - set custom interceptor before ratelimit
23 lines
858 B
XML
23 lines
858 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<application>
|
|
<activity
|
|
android:name=".pt.tsukimangas.TsukiMangasUrlActivity"
|
|
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="tsuki-mangas.com"
|
|
android:pathPattern="/obra/..*"
|
|
android:scheme="https" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|