Endurain: Support SSO when logging into Endurain

This commit is contained in:
Arjan Schrijver
2026-06-19 23:31:23 +02:00
parent 67ee952634
commit 8b9b64b513
11 changed files with 455 additions and 34 deletions
+17
View File
@@ -1124,6 +1124,23 @@
</intent-filter>
</activity>
<activity
android:name=".activities.endurain.EndurainOAuthCallbackActivity"
android:exported="true"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Deep link scheme for OAuth callback -->
<data
android:scheme="${appAuthRedirectScheme}"
android:host="endurain"
android:pathPrefix="/oauth/callback" />
</intent-filter>
</activity>
<!-- For supported versions through Android 13, create an activity to show the rationale
of Health Connect permissions once users click the privacy policy link. -->
<activity