AppsFlyer helps mobile marketers measure and improve their performance through amazing tools, really big data and over 2,000 integrations.
In order for us to provide optimal support, we would kindly ask you to submit any issues to support@appsflyer.com
When submitting an issue please specify your AppsFlyer sign-up(account) email, your app ID, production steps, logs, code snippets and any additional relevant information
- iOS 8.0+ / macOS 10.11+ / tvOS 9.0+
CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate AppsFlyer into your Xcode project using CocoaPods, specify it in your Podfile
:
pod 'AppsFlyerFramework'
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
To integrate AppsFlyerFramework 5.1.0
version or higher for Carthage
into your Xcode project, specify it in your Cartfile
:
binary "https://raw.githubusercontent.com/AppsFlyerSDK/AppsFlyerFramework/master/AppsFlyerLib.json"
Starting from the version 5.1.0
and higher, AppsFlyerLib.framework is a static framework. In order to successfully integrate it, please follow next steps:
- In your project settings
General -> Frameworks, Libraries and Embedded Content
addAppsFlyerLib.framework
and setDo not embed
option for it; - Make sure you remove and do not add any static frameworks as input/output files for
/usr/local/bin/carthage copy-frameworks
Run script.
In order to integrate AppsFlyerFramework version 5.0.0
and lower, specify following contents in your Cartfile
:
binary "https://raw.githubusercontent.com/AppsFlyerSDK/AppsFlyerFramework/master/AppsFlyerTracker.json"
- Add AppsFlyerTracker.framework file to
General -> Frameworks, Libraries and Embedded Content
; - Make sure to add AppsFlyerFramework Build path as input file for
/usr/local/bin/carthage copy-frameworks
Run script.
- Add `pod 'AppsFlyerFramework' in Podfile
- Run
pod update
- Implement in
AppDelegate
:
import AppsFlyerLib
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
AppsFlyerTracker.shared().isDebug = true
AppsFlyerTracker.shared().appsFlyerDevKey = "devkey";
AppsFlyerTracker.shared().appleAppID = "1234567890"
AppsFlyerTracker.shared().delegate = self
}
}
func applicationDidBecomeActive(_ application: UIApplication) {
AppsFlyerTracker.shared().trackAppLaunch()
}
- Implement delegates:
extension AppDelegate: AppsFlyerTrackerDelegate {
func onConversionDataSuccess(_ conversionInfo: [String : Any]) {
print(conversionInfo)
}
func onConversionDataFail(_ error: Error) {
print(error)
}
func onAppOpenAttribution(_ attributionData: [String : Any]) {
print(attributionData)
}
func onAppOpenAttributionFailure(_ error: Error) {
print(error)
}
}
- Add
pod 'AppsFlyerFramework', '5.1.0'
in Podfile - Run
pod update
- Implement in
AppDelegate
:
import AppsFlyerAttribution
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationWillFinishLaunching(_ notification: Notification) {
AppsFlyerTracker.shared().isDebug = true
AppsFlyerTracker.shared().appsFlyerDevKey = "devkey";
AppsFlyerTracker.shared().appleAppID = "1234567890"
AppsFlyerTracker.shared().delegate = self
AppsFlyerTracker.shared().trackAppLaunch()
}
}
Note: AppsFlyerTracker setup must be in -applicationWillFinishLaunching:
and not in -applicationDidFinishLaunching:
Note: -trackAppLaunch
call in -applicationWillFinishLaunching:
- Implement delegates:
extension AppDelegate: AppsFlyerTrackerDelegate {
func onConversionDataSuccess(_ conversionInfo: [String : Any]) {
print(conversionInfo)
}
func onConversionDataFail(_ error: Error) {
print(error)
}
func onAppOpenAttribution(_ attributionData: [String : Any]) {
print(attributionData)
}
func onAppOpenAttributionFailure(_ error: Error) {
print(error)
}
}
You can find the release changelog here.