amit-kremer93
amit-kremer93
@csantarin `I feel like this is a hack, but it holds for the time being. Would it be possible to remedy this gotcha or at least make it known to...
@YangJonghun AppsFlyer plugin doesn't work for you with RN 0.69?
possible duplicate of this: https://github.com/AppsFlyerSDK/appsflyer-android-app/issues/17
Hii @ovalwmaniero can you please point to the place where the sdk uses this dependency?
@ovalwmaniero in our RN plugin we don't use segment. did you install [this](https://github.com/AppsFlyerSDK/appsflyer-segment-android-plugin) plugin also?
It looks like it is related to our native android sdk so we will keep you updated. Thank you.
@lucasroca @trinhnguyen-enouvo the handler doesn't work at all? or just when the app is in the background/cold start?
@poonai @lucasroca @kbihani try to update to the plugin's latest version. it works with ios 14.5
@michalis-ligopsychakis if you are using universal-links use [this](https://github.com/AppsFlyerSDK/appsflyer-react-native-plugin/blob/master/SampleApps/AppsFlyerExample/ios/AppsFlyerExample/AppDelegate.m#L71-L75) if you are using uri-scheme, use this: ``` - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary *) options { [[AppsFlyerAttribution shared] handleOpenUrl:url options:options]; return...
@GoldenWings try to go to `node_modules/react-native-appsflyer/ios/AppsFlyerAttribution.m` and duplicate [this](https://github.com/AppsFlyerSDK/appsflyer-react-native-plugin/blob/master/ios/AppsFlyerAttribution.m#L81) line. it should look like this: ``` else if(self.userActivity && self.restorationHandler){ [[AppsFlyerLib shared] continueUserActivity:self.userActivity restorationHandler:self.restorationHandler]; [[AppsFlyerLib shared] continueUserActivity:self.userActivity restorationHandler:self.restorationHandler]; self.userActivity =...