Following the setup for the appsflyer cordova plugin as well as enabling universal links for iOS (following Appsflyer documentation) does not result in actually directing a user to a specific page in our app.
Versions:
cordova 7.1.0
cordova-android 6.4.0
cordova-ios 4.5.3
cordova-plugin-appsflyer-sdk 4.3.0
iOS: 10.3.3
The associated domains is set to applinks:<_onelink_id>.onelink.me
for the Xcode project. Then, we publish a onelink with a deep link into a specific page in our app (with a query param such as af_dp=<custom_scheme>://some/specific/route
)
On Android, the normal deeplinks work. E.g: handleOpenUrl
is called, then we call appsflyer.handleOpenUrl
and then we continue to route into the app to the page requested in the deeplink.
However, on iOS it does open our app when it is installed but handleOpenUrl
is never called. I cannot find any other part mentioning a different handling of universal links in the documentation.
As the app is opened, universal links must be configured correctly. How to proceed from here?