feat(pt/anitube): Added support to Url Activity to pt/Anitube

This commit is contained in:
WebDitto 2024-06-29 17:03:57 -03:00
parent 1e981164ac
commit 4fc8eff401
4 changed files with 92 additions and 1 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.anitube.AnitubeUrlActivity"
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="anitube.vip"
android:pathPattern="/..*/..*"
android:scheme="https" />
<data
android:host="www.anitube.vip"
android:pathPattern="/..*/..*"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>