Skip to content

Commit

Permalink
Fix(pt/Anitube): Update source
Browse files Browse the repository at this point in the history
  • Loading branch information
Dark25 committed Oct 10, 2024
1 parent c2cd658 commit 96555be
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/pt/anitube/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit 96555be

Please sign in to comment.