Skip to main content

Adjust

This is the Ionic Cordova SDK of Adjust™. You can read more about Adjust™ at adjust.com.

Requires Cordova plugin: com.adjust.sdk. For more info, please see the Adjust Cordova SDK

https://github.com/adjust/cordova_sdk

Stuck on a Cordova issue?

Don't waste precious time on plugin issues.

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.

Installation#

$ npm install com.adjust.sdk $ npm install @ionic-native/adjust $ ionic cap sync

Supported Platforms#

  • Android
  • iOS

Usage#

React#

Learn more about using Ionic Native components in React

Angular#

 import { Adjust, AdjustConfig, AdjustEnvironment } from '@ionic-native/adjust';
 constructor(private adjust: Adjust) { }
 ...
 const config = new AdjustConfig('APP-TOKEN-HERE', AdjustEnvironment.Sandbox); config.logLevel = AdjustLogLevel.Verbose; // Set other config properties. adjust.create(config);