I can integrate the Android version by following this guide https://github.com/shopmium/titanium_appsflyer_android_module I am using the module from the dist folder and it is perfect.
But when I wanted to integrate for IOS version. This link https://github.com/shopmium/titanium_appsflyer_ios_module could not help much. At the first, i try to import whole folder for this module. When I compile, the library is not found due to the naming problem I think. When I rename the parent folder as the name of the library file for example Library = libAppsFlyerLib.a Folder name = AppsFlyerLib It found the library but when I ran the app with this code var appsflyer = require('AppsFlyerLib'); appsflyer.startTracker('blablabla','blablabla'); appsflyer.trackAppLaunch(); The app shown "Couldn't find module: AppsFlyerLib"
Hence I decided to find a module as in the dist folder of Android version but IOS didn't provide any file as Android version. And I rearrange the module as the module from dist folder eg com.shopmium.appsflyer/1.0/libcom.shommium.appsflyer.a
hence my ios version of Appsflyer would look like AppsFlyerLib/1.0/libAppsFlyerLib.a
Success when compiling but still failed to find module. Anyone done this before? I just need to integrate for IOS.