PauloReiis

Results 3 comments of PauloReiis

I have the same problem in version 3.3.4

Hi, have you tried adding (launchDeferredDeeplink = true): ``` final config = AdjustConfig( 'myAppToken', AdjustEnvironment.production, ); config.launchDeferredDeeplink = true; ... ```

Here on IOS, tracking permission was missing in IOS 14.0 or higher. inside AppDelegate ``` override func applicationDidBecomeActive(_ application: UIApplication) { if #available(iOS 14, *) { ATTrackingManager.requestTrackingAuthorization { status in...