New Source: Otaku Animes

This commit is contained in:
WebDitto 2024-07-27 20:31:46 -03:00 committed by GitHub
parent eac5ca9cc5
commit 2611f03893
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 319 additions and 0 deletions

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
android:name=".pt.otakuanimes.OtakuAnimesUrlActivity"
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="otakuanimesscc.com"
android:pathPattern="/..*"
android:scheme="https" />
<data
android:host="otakuanimesscc.com"
android:pathPattern="/anime/..*"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>