Cordova
Things to keep handy before starting your integration with Apxor
Cordova Integration
Step 1: Getting started
cordova plugin add cordova-plugin-apxor-sdkStep 2: Handle deeplink redirection
ApxorSDK.registerDeeplinkHandler((deeplinkUrl) => {
// Whenever redirection happens from InApp notification buttons,
// this callback will be executed.
switch (deeplinkUrl) {
case "scheme://about":
// Redirect to About Component
break;
default:
// Check if it's external URL and redirect to Browser
break;
// and so on
}
});Android Integration
Step 1: Add dependencies
1.1 ApxorSDK dependencies (mandatory)
1.2 Add exoplayer in your app (optional)
Step 2: Add Proguard Rules
Step 2: Initialize Apxor Android SDK
Step 3: Enable uninstall tracking for your users [Optional]
Step 4: To view tooltips, Coachmark and Badges
Step 5: Ensuring ApxorSDK is initialised successfully


Step 6: Log data to set up triggers and measure goals
iOS integration
Initialize Apxor iOS SDK
Configuring Test Device
Configuring URL Scheme

Handling the deep link
To show tooltips
Ensuring ApxoriOSSDK is initialised successfully
Additional features API Guide
Last updated

