HTTPS applink support for iOS and Android first try - #603
Open
jakdan99 wants to merge 1 commit into
Open
Conversation
specifying deep link paths to allow for anonymous auth in android at the same time specifying deep link paths to allow for anonymous auth in android at the same time works for the most part it works removing prints Merge fixes
Collaborator
|
@jakdan99 just saw this. What is this for? |
Zeroupper
requested changes
Jul 27, 2026
Comment on lines
+96
to
+97
| carp_webservices: | ||
| path: ../carp.sensing-flutter/backends/carp_webservices/ |
| }); | ||
|
|
||
| final qrcode = scanData.code; | ||
| print('QR code scanned: $qrcode'); |
| child: TextButton( | ||
| onPressed: () async { | ||
| bool isConnected = await bloc.checkConnectivity(); | ||
| print("isConnected: $isConnected"); |
Comment on lines
-120
to
+123
| info('$runtimeType - ANONYMOUS User authenticated - user: $user'); | ||
| print('$runtimeType - ANONYMOUS User authenticated - user: $user'); |
Comment on lines
+7
to
+9
| <string>applinks:study.app.dev.carp.dk</string> | ||
| <string>applinks:study.app.test.carp.dk</string> | ||
| <string>applinks:study.app.carp.computerome.dk</string> |
Collaborator
There was a problem hiding this comment.
where is prod fro carp.dk
| <Scheme | ||
| LastUpgradeVersion = "1510" | ||
| version = "1.3"> | ||
| version = "1.7"> |
Collaborator
There was a problem hiding this comment.
What is this version upgrade for?
Comment on lines
+94
to
+100
| <EnvironmentVariables> | ||
| <EnvironmentVariable | ||
| key = "DART_DEFINES" | ||
| value = "ZGVwbG95bWVudC1tb2RlPWRldg==" | ||
| isEnabled = "YES"> | ||
| </EnvironmentVariable> | ||
| </EnvironmentVariables> |
Collaborator
There was a problem hiding this comment.
This needs explanation, dart define should be part of the build parameters or what is this for?
Comment on lines
+47
to
+48
| <!--Location | ||
| Permissions--> |
Collaborator
There was a problem hiding this comment.
why this got into 2 lines?
Comment on lines
+53
to
+54
| <!--Foreground | ||
| Service Permissions for Android >= 14 / SDK 34--> |
Collaborator
There was a problem hiding this comment.
why this got into 2 lines?
Comment on lines
-124
to
-131
| <data android:scheme="carp-ws-prod-auth" android:host="auth" /> | ||
| </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" /> | ||
|
|
Collaborator
There was a problem hiding this comment.
is this not used by anything?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
specifying deep link paths to allow for anonymous auth in android at the same time