Open vt7211 opened 4 years ago
It resolve for my case. In Appdelegate.m
- (BOOL)application:(UIApplication *)app
openURL:(NSURL *)url
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
{
if ([[FBSDKApplicationDelegate sharedInstance] application:app openURL:url options:options]) {
return YES;
}
if([RNGoogleSignin application:app openURL:url options:options]){
return YES;
}
if([[url absoluteString] rangeOfString:@"momo"].location != NSNotFound){
[RNMomosdk handleOpenUrl:url];
return YES;
}
if ([RCTLinkingManager application:app openURL:url options:options]) {
return YES;
}
return NO;
}
thanks @cohedz94, your code works well.
Event RCTMoMoNoficationCenterRequestTokenState working ok but event RCTMoMoNoficationCenterRequestTokenReceived not run after i confirm on app Momo. Help me debug it. Thank you so much.