Integrate with AppLovin
If you use AppLovin, you can automatically track Ad Revenue from Impressions with the justtrack SDK.
Before you begin
Please review the following compatibility matrix to make sure you're using compatible versions:
justtrack SDK | AppLovin Adapter | AppLovin SDK |
---|---|---|
6.0.0+ | 2.x | 8.x, 9.x |
6.0.0+ | 1.x | 7.x |
Integrate with AppLovin
First, add the adapter dependency to your package manager:
npm install justtrack-adapter-applovin --save
Then, initialize the adapter, and integrate it with the justtrack SDK:
import { registerAdapter as registerApplovinAdapter } from 'justtrack-adapter-applovin';
AppLovinMAX.initialize('your applovin token').then((_: Configuration) => {
registerApplovinAdapter('applovin user id or null');
}).catch(error => {
// Handle exceptions
});