4.2.17 • Published 7 years ago

cordova-plugin-ejemploplugin v4.2.17

Weekly downloads
-
License
ISC
Repository
gitlab
Last release
7 years ago

Cordova / PhoneGap AppsFlyer Plugin for Android and iOS.

Version Cordova status AF-Android-SDK AF-iOS-SDK NPM downloads Github Issues Build Status

Documentation

Installation

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>

Manual Installation

For more details about manual installation see wiki page Manual Installation or use author's page.

PhoneGap Build

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" />

Usage API

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);

2. Set currency code (optional)

//USD is default value. Acceptable ISO(http://www.xe.com/iso4217.php) Currency codes here. Examples:
window.plugins.appsFlyer.setCurrencyCode("USD");

3. Set customer user ID (Advance)

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);

4. In App Events Tracking API (optional)

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 in­app events provide advertisers with the ability to track any post­install event and attribute it to a media source and campaign. An in­app event is comprised of an event name and event parameters
Example:
var eventName = "af_add_to_cart";
var eventValues = {"af_content_id": "id123", "af_currency":"USD", "af_revenue": "2"};
window.plugins.appsFlyer.trackEvent(eventName, eventValues);

5. Get AppsFlyer’s Unique Device UID (Advanced)

Get AppsFlyer’s proprietary device ID. AppsFlyer device ID is the main ID used by AppsFlyer in the Reports and API’s.

Example:
var getUserIdCallbackFn = function(id) {
    alert('received id is: ' + id);
}
window.plugins.appsFlyer.getAppsFlyerUID(getUserIdCallbackFn);

6. Accessing AppsFlyer Attribution / Conversion Data from the SDK (Deferred Deep-linking).

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.

Uninstall Tracking

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.

Deep Linking Tracking

Android

Since v.4.2.0 deeplinking metadata (scheme/host) is sent automatically

iOS

Add the following function handleOpenUrl to your root, and call our SDK as shown:

Example:
var handleOpenURL = function(url) {
    window.plugins.appsFlyer.handleOpenUrl(url);
}

Sample App

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
4.2.17

7 years ago