- Installation
- Usage API
- Uninstalls Tracking
- Deep Links Tracking
- Plugin wiki pages
- Change Log
- Sample App
Using the reference to GitHub repository:
cordova plugin add https://github.com/DevDmitryHub/cordova-plugin-appsflyer.git
Using plugin name (Cordova v.5+):
cordova plugin add cordova-plugin-appsflyer
For Ionic Framework:
ionic plugin add cordova-plugin-appsflyer
For old Cordova versions you should add reference to the plugin script file.
Then reference testanderson.js
in index.html
, after cordova.js
/phonegap.js
.
Mind the path:
<script type="text/javascript" src="js/plugins/testanderson.js"></script>
For more details about manual installation see wiki page Manual Installation or use author's page.
Built against Phonegap >= 4.3.x.
Cordova >= 4.3.x.
Add the following line to your config xml:
<gap:plugin name="cordova-plugin-appsflyer" version="4.2.3" />
1. Set your App_ID (iOS only), Dev_Key and enable AppsFlyer to detect installations, sessions (app opens), and updates.
Note: This is the minimum requirement to start tracking your app installs and it's already implemented in this plugin. You MUST modify this call and provide:
- devKey - Your application devKey provided by AppsFlyer.
- appId - For iOS only. Your iTunes application id.
function isIOS() {
//for Cordova
var userAgent = window.navigator.userAgent.toLowerCase();
var result = /iphone|ipad|ipod/.test( userAgent );
//for Ionic
var result = ionic.Platform.isIOS();
return result;
}
function initListener() {
var options = {
devKey: "xxXXXXXxXxXXXXxXXxxxx8", // your AppsFlyer devKey
isDebug: true // optional
};
if (isIOS()) {
options.appId = "123456789"; // your ios app id in app store
}
window.plugins.appsFlyer.initSdk(options);
}
//for Cordova
document.addEventListener("deviceready", initListener, false);
//for Ionic
$ionicPlatform.ready(initListener);
//USD is default value. Acceptable ISO(http://www.xe.com/iso4217.php) Currency codes here. Examples:
window.plugins.appsFlyer.setCurrencyCode("USD");
Setting your own custom ID will enable you to cross-reference your own unique ID with AppsFlyer’s user ID and the
other devices’ IDs. This ID will be available at AppsFlyer CSV reports along with postbacks APIs for cross-referencing
with you internal IDs.
Note: The ID must be set during the first launch of the app at the SDK initialization. The best practice is to call to this API during deviceready
event if possible.
window.plugins.appsFlyer.setAppUserId(userId);
These events help you track how loyal users discover your app and attribute them to specific campaign/source.
- These in-app events help you track how loyal users discover your app, and attribute them to specific campaigns/media-sources. Please take the time define the event/s you would like to measure to allow you to track ROI (Return on Investment) and LTV (Lifetime Value).
- The “trackEvent” method allows you to send in-app events to AppsFlyer analytics. This method allows you to add events dynamically by adding them directly to the application code.
- Rich In App Events Tracking API (optional). AppsFlyer’s rich inapp events provide advertisers with the ability to track any postinstall event and attribute it to a media source and campaign. An inapp event is comprised of an event name and event parameters
var eventName = "af_add_to_cart";
var eventValues = {"af_content_id": "id123", "af_currency":"USD", "af_revenue": "2"};
window.plugins.appsFlyer.trackEvent(eventName, eventValues);
Get AppsFlyer’s proprietary device ID. AppsFlyer device ID is the main ID used by AppsFlyer in the Reports and API’s.
var getUserIdCallbackFn = function(id) {
alert('received id is: ' + id);
}
window.plugins.appsFlyer.getAppsFlyerUID(getUserIdCallbackFn);
Read more: Android, iOS
Note: AppsFlyer plugin replaced event onInstallConversionDataLoaded
by using listener onInstallConversionDataListener
if you want use it,
you have to enable option onInstallConversionDataListener
to true
on initSdk
and handle information.
Android - AppsFlyer requires a Google Project Number to enable uninstall tracking for Android apps.
More Information.
Usage: setGCMProjectID(GCMProjectNumber): void
.
iOS - AppsFlyer requires a Token to enable uninstall tracking for iOS apps.
More Information.
Usage: registerUninstall(token): void
.
Since v.4.2.0 deeplinking metadata (scheme/host) is sent automatically
Add the following function handleOpenUrl
to your root, and call our SDK as shown:
var handleOpenURL = function(url) {
window.plugins.appsFlyer.handleOpenUrl(url);
}
This plugin has a examples
folder with demoA
(AngularJS 1.x) and demoC
(Cordova) projects bundled with it. To give it a try , from root plugin folder execute following:
npm run <example>.<operation>
-
demo_a
- for Android application -
demo_c
- for Cordova application -
run-android
- runs Android -
build-android
- builds Android -
run-ios
- runs iOS -
build-ios
- builds iOS