-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: move deep link prefix to .env file #6008
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #6008 +/- ##
==========================================
+ Coverage 88.61% 88.62% +0.01%
==========================================
Files 728 726 -2
Lines 30546 30466 -80
Branches 5224 5216 -8
==========================================
- Hits 27068 27001 -67
+ Misses 3435 3422 -13
Partials 43 43
... and 16 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great, thanks! 👍
ios/celo/AppDelegate.mm
Outdated
@@ -77,8 +77,9 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( | |||
[[CleverTapReactManager sharedInstance] applicationDidLaunchWithOptions:launchOptions]; | |||
|
|||
NSString *env = [RNCConfig envFor:@"FIREBASE_ENABLED"]; | |||
NSString *deepLinkPrefix = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"DEEP_LINK_PREFIX"]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NSString *deepLinkPrefix = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"DEEP_LINK_PREFIX"]; | |
NSString *deepLinkPrefix = [RNCConfig envFor:@"DEEP_LINK_PREFIX"]; |
.env.alfajores
Outdated
@@ -12,3 +12,4 @@ IOS_GOOGLE_SERVICE_PLIST=GoogleService-Info.alfajores.plist | |||
SENTRY_ENABLED=true | |||
AUTH0_DOMAIN=auth.alfajores.valora.xyz | |||
ONBOARDING_FEATURES_ENABLED=CloudBackupSetup,CloudBackupRestore,CloudBackupInOnboarding,EnableBiometry,ProtectWallet | |||
DEEP_LINK_PREFIX=celo |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you think of naming it DEEP_LINK_URL_SCHEME
?
It better represents what it is and more closely follows what iOS and Android use for this.
Description
Related to making the MS runtime native folders brand agnostic. This PR:
src
folderTest plan
CI passes - we have deep link tests there.
Related issues
Backwards compatibility
Y
Network scalability
If a new NetworkId and/or Network are added in the future, the changes in this PR will: