feat(src/pt): New Source: Goyabu

This commit is contained in:
WebDitto 2024-06-29 15:19:31 -03:00
parent 5f1ff08e57
commit 358d14684c
9 changed files with 296 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.goyabu.GoyabuUrlActivity"
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="goyabu.to"
android:pathPattern="/..*"
android:scheme="https" />
<data
android:host="goyabu.to"
android:pathPattern="/anime/..*"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>