In order for us to provide optimal support, we would kindly ask you to submit any issues to [email protected]
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.
- v6 Breaking changes
- Plugin info
- Installation
- Usage
- Deep Linking
- IMEI And Android ID Collection (Android Only)
- API Methods
- Changelog
We have renamed the following APIs:
Old API | New API |
---|---|
trackEvent | logEvent |
startTracking | start |
stopTracking | stop |
isTrackingStopped | isStopped |
setCustomerIdAndTrack | startWithCUID |
validateAndTrackInAppPurchase | validateAndLogInAppPurchase |
And removed the following ones:
- trackAppLaunch -> no longer needed. See new init guide
- sendDeepLinkData -> no longer needed
If you have used 1 of the removed APIs, please check the integration guide for the updated instructions
Supported platforms:
- Android
- iOS 12+
Based on:
- iOS AppsFlyerSDK v6.14.3
- Android AppsFlyerSDK v6.14.0
Built with:
- SWF-version = 44
- AIR SDK version = 50.2.3
Download the AppsFlyerAIRExtension.ane file from the bin folder Add the ANE to your project and make sure the IDE is marked to package it.
If the following was not added automatically please add it to the APP_NAME-app.xml:
<extensions>
<extensionID>com.appsflyer.adobeair</extensionID>
</extensions>
-
On AppsFlyer's dashboard you will need to add "air." prefix to the package name as this is added automatically by Air. For example - an app with the package name "com.test.android" , should set the app id on AppsFlyer's Dashboard as "air.com.test.android".
-
Add the following permissions to Android Manifest (in the app description
APP_NAME-app.xml
):
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" />
- Add the following metatag to Android Manifest within the application tag (in the app description
APP_NAME-app.xml
):
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
As a result, you should see your Manifest like this:
IMPORTANT If you use AIR SDK < v33.1.1.856
Due to some limitations in the ADT bundled with AIR SDK < 33.1.1.856, after APK is built it is missing some important files.
To add those files (with the help of automated script):
- Place into single directory of your choice:
- apk file
- keystore that was used to sign the apk
- af_apk_fix.sh script
- Run
./af_apk_fix.sh
and enter requested info when prompted
Here is what the script is doing. In case of any issues you can perform those steps manually:
-
Decode the apk using apktool. This will create app_name folder.
apktool d app_name.apk
-
Download the AppsFlyer SDK jar/aar of the same version that was used in the apk
-
Extract files
a-
andb-
from the jar (by renaming jar into a zip) and place them into the folder with the decompiled apk toapp_name/unknown/com/appsflyer/internal
-
Edit
apktool.yml
by adding these lines underunknownFiles:
like in the screenshot below:
com/appsflyer/internal/b-: '0'
com/appsflyer/internal/a-: '0'
-
Build the apk back (will appear under
app_name/dist
folder)
apktool b app
-
Zipalign the apk
zipalign -p -f -v 4 app_name/dist/app_name.apk app_name/dist/app_name-aligned.apk
-
Sign the apk
apksigner sign -v --ks myKeystore.jks --ks-key-alias myKey --out app_name/dist/app_name-aligned-signed.apk app_name/dist/app_name-aligned.apk
-
Verify signature
apksigner verify app_name/dist/app_name-aligned-signed.apk
-
Verify zipalignment
zipalign -c -v 4 app_name/dist/app_name-aligned-signed.apk
-
Your apk
app_name/dist/app_name-aligned-signed.apk
is ready to use!
waitForATTUserAuthorization(timeout:int):void;
Import the AppsFlyer Extension into your project:
import AppsFlyerInterface;
Construct the AppsFlyer interface:
private static var appsFlyer: AppsFlyerInterface;
appsFlyer = new AppsFlyerInterface();
(Optional) If you want to perform deep linking or access AppsFlyer conversion data from the application, register Conversion Listener:
appsFlyer.registerConversionListener();
Set the Developer key and iOS app ID and Initialise the SDK:
appsFlyer.init("DevKey", "iOSAppID");
Initialise session reporting (automatically report app launches and background-to-foreground transitions) with DevKey and iOS app ID:
appsFlyer.start("DevKey", "iOSAppID");
If you don't target iOS as a platform, specifying iOSAppID
ID is not required
Android: Create an intent-filter
in the Android-Manifest.xml containing the required scheme/host/path properties. For additional reading on App-Links in Adobe Air: https://www.adobe.com/devnet/air/articles/android-app-links.html
iOS: Using URI schemes
. For additional reading on URI schemes in iOS: https://help.adobe.com/en_US/air/build/WSfffb011ac560372f7e64a7f12cd2dd1867-8000.html#WS901d38e593cd1bac354f4f7b12e260e3e67-8000
More on DeepLinks and AppsFlyer: OneLink™ Overview
In order to receive the relevant AppsFlyer information from the deep link used, register the following event listeners:
appsFlyer.addEventListener(AppsFlyerEvent.APP_OPEN_ATTRIBUTION, eventHandler); // success
appsFlyer.addEventListener(AppsFlyerEvent.ATTRIBUTION_FAILURE, eventHandler); // error
And handle the response in a corresponding event handler:
private function eventHandler(event:AppsFlyerEvent):void {
log("AppsFlyer event: " + event.type + "; \nData: " + event.data);
}
In order to receive the conversion data for the current install, register the following event listeners:
appsFlyer.addEventListener(AppsFlyerEvent.INSTALL_CONVERSATION_DATA_LOADED, eventHandler); // success
appsFlyer.addEventListener(AppsFlyerEvent.INSTALL_CONVERSATION_FAILED, eventHandler); //error
And handle the response in a corresponding event handler:
private function eventHandler(event:AppsFlyerEvent):void {
log("AppsFlyer event: " + event.type + "; \nData: " + event.data);
}
By default, IMEI and Android ID are not collected by the SDK if the OS version is higher than KitKat (4.4) and the device contains Google Play Services.
To explicitly send these IDs to AppsFlyer, developers can use the following APIs and place it before initialising the SDK.
If the app does NOT contain Google Play Services, the IMEI and Android ID are collected by the SDK. However, apps with Google play services should avoid IMEI collection as this is in violation of the Google Play policy.
appsFlyer.setCollectIMEI(bool);
appsFlyer.setImeiData("imeiString");
appsFlyer.setCollectAndroidID(bool);
appsFlyer.setAndroidIdData("AndroidIDString");
In-App Events can be logged using the `logEvent("eventName", "eventValue") API. For Example:
var param:String = "Deposit";
var value:String = '{"amount":10, "FTDLevel":"-"}';
appsFlyer.logEvent(param, value);
appsFlyer.setAppUserId("user_id_as_used_in_the_app");
appsFlyer.setUserEmails("[email protected]");
appsFlyer.setCurrency("USD");
In some extreme cases you might want to shut down all SDK reporting due to legal and privacy compliance. This can be achieved with the stop() API. Once this API is invoked, our SDK will no longer communicate with our servers and stop functioning.
appsFlyer.stop();
appsFlyer.setDebug(bool);
Important : do not release the application to the AppStore / Google Play with debug logs enabled.
You can find the release changelog here.