feat: open user links in dantotsu

This commit is contained in:
rebelonion 2024-03-17 23:05:05 -05:00
parent 353452dd21
commit 5c2ae57d77
6 changed files with 67 additions and 16 deletions

View file

@ -261,6 +261,17 @@
<data android:host="myanimelist.net" />
<data android:pathPrefix="/anime" />
</intent-filter>
<intent-filter android:label="@string/view_profile_in_dantotsu">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="anilist.co" />
<data android:pathPrefix="/user" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"