Skip to content

Commit

Permalink
🚑 Fix auto verification of links
Browse files Browse the repository at this point in the history
  • Loading branch information
jheubuch committed Sep 1, 2023
1 parent 5eaba0b commit b858711
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,17 @@
android:name=".ui.login.LoginActivity"
android:theme="@style/Theme.Traewelling.Login"
android:exported="true">
<intent-filter>
<action android:name="de.hbch.traewelling.HANDLE_AUTHORIZATION_RESPONSE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter android:autoVerify="true">
<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="app.traewelldroid.de"/>
<action android:name="de.hbch.traewelling.HANDLE_AUTHORIZATION_RESPONSE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>

Expand Down

0 comments on commit b858711

Please sign in to comment.