Skip to content

Commit

Permalink
intercept other apps auth requests
Browse files Browse the repository at this point in the history
  • Loading branch information
DatL4g committed May 12, 2024
1 parent 6880b0f commit f9457e6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions composeApp/src/androidMain/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,33 @@
<data android:scheme="aniflow" />
<data android:host="anilist" />
</intent-filter>
<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:scheme="katana" />
<data android:host="app" />
</intent-filter>
<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:scheme="anihyou" />
<data android:host="auth-response" />
</intent-filter>
<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:scheme="app" />
<data android:host="animite" />
</intent-filter>
</activity>

<!-- Trigger Google Play services to install the backported photo picker module. -->
Expand Down

0 comments on commit f9457e6

Please sign in to comment.