Cordova
Things to keep handy before starting your integration with Apxor
Please have the following handy before beginning the integration:
Application identifier generated on the Apxor dashboard for your app (Read more on how to fetch the application identifier from Apxor dashboard)
App Bundle Id : Every app has a unique application ID that looks like
com.example.myapp
. This id uniquely identifies the app on the device and also on the app store. (Know more about bundle ids here)The list of events to setup triggers and track goals, user properties that allows to personalize messages and to target better. (Read more on how you can setup here)
Android Integration
Step 1: Getting started
Run the following command in your terminal from the project folder. This command will fetch the apxor plugins for you.
Step 2: Add Proguard Rules
Configure the below rules in your proguard-rules.pro
file
Path: <project>/<app-module>/gradle.properties
:
Step 3: Initialize Apxor Android SDK
To Auto initialize SDK (Recommended), add following
meta-data
tag inside yourapplication
tag in yourAndroidManifest.xml
fileTo manually initialize SDK, call
ApxorSDK.initialize
method in yourApplication
class
Step 4: Enable uninstall tracking for your users [Optional]
Apxor uses your firebase server key to send silent push notifications to track uninstalls in order to measure outcomes of your campaign. To enable this please do the following :
Path : app/build.gradle
Step 5: To view tooltips, Coachmark and Badges
In your MainActivity
onCreate
method you must set the tag for the WebView
as follows to view the tooltips.
Step 6: Ensuring ApxorSDK is initialised successfully
We have to verify for two things as follows :
SDK Initialisation
On running your android project lookout for the following log in logcat :
Plugin Initialisation
By default, only error logs are enabled. To see debug logs for plugin initialisation and to confirm tracking event triggers, user properties. Please run the below command in terminal
Step 7: Log data to set up triggers and measure goals
Now as we are done with basic integration, we can go ahead to setup event triggers, capture data for targeting and to personalize messaging.
Please follow the guide here to log user properties, events and event properties.
iOS integration
Initialize Apxor iOS SDK
To Auto initialize SDK, add the following inside your
application
plist file.Open your application's Info.plist as source code.
Copy paste the below piece of code, to create an entry for ApxorSDK.
To show tooltips
In your
MainViewController
(the ViewController extending theCDVViewController
)init
method you must set the tag for theWebView
as follows to view the tooltips.
Ensuring ApxoriOSSDK is initialised successfully
Lookout for the following log in
console output
,
Additional features API Guide
Click here for guides to log user properties, events and event properties.
Last updated