Overview

Median's Adjust Native Plugin enables you to track events and analytics by enabling the Adjust SDK. The app will register its installation and launch Adjust through the Adjust Android and iOS SDKs.

You can then use the Median JS Bridge to send events directly to Adjust.

🚧

Adjust Environment

Prior to publishing your app please confirm that the Adjust environment is set to AdjustConfig.EnvironmentProduction.

Create an Event

You can send events to your Adjust instance as shown below.

↔️Median JavaScript Bridge

const adjustEvent = new AdjustEvent('abc123');
adjustEvent.setRevenue(0.01, 'EUR');
median.adjust.trackEvent(adjustEvent);

Additional information on event recording can be found on the Adjust SDK Documentation