I have configured jitsi meet deferred deep linking with firebase dynamic link
- (BOOL)application:(UIApplication *)app
openURL:(NSURL *)url
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
NSLog(@"launch app");
// This shows up during a reload in development, skip it.
// https://github.com/firebase/firebase-ios-sdk/issues/233
if ([[url absoluteString] containsString:@"google/link/?dismiss=1&is_weak_match=1"]) {
return NO;
}
NSURL *openUrl = url;
if ([FIRUtilities appContainsRealServiceInfoPlist]) {
// Process Firebase Dynamic Links
FIRDynamicLink *dynamicLink = [[FIRDynamicLinks dynamicLinks] dynamicLinkFromCustomSchemeURL:url];
NSURL *firebaseUrl = [FIRUtilities extractURL:dynamicLink];
NSLog(@"firebaseUrl");
if (firebaseUrl != nil) {
openUrl = firebaseUrl;
NSLog(@"firebaseUrl2");
NSLog(@"firebaseUrl2 = %@", firebaseUrl);
}
}
NSLog(@"firebaseUrl3 = %@", openUrl);
return [[JitsiMeet sharedInstance] application:app
openURL:openUrl
options:options];
}
when I launch the mobile app first-time Firebase URL is printed but dest not app correctly route
I have print openUrl it is print the correct value