Vivo referrer plugin

The Vivo referrer plugin enables the Adjust SDK to read Vivo app store install referrer values on a device. The SDK then sends this information to the Adjust backend as part of the install payload.

The Vivo install referrer is available on all devices with Vivo app store version 5.3.0.0 or above.

Before you begin

Follow the get started guide to integrate the Adjust SDK in your app.

Install the Vivo referrer plugin

There are two ways to install the Vivo referrer plugin:

Maven

JAR

Use the plugin

The Vivo referrer plugin is enabled by default. You can toggle reading Vivo install referrer information on and off using the AdjustVivoReferrer class methods.

To disable reading the install referrer, call AdjustVivoReferrer.doNotReadVivoReferrer() before you initialize the SDK.

Java
Kotlin
AdjustVivoReferrer.doNotReadVivoReferrer();
//...
Adjust.onCreate(config);

To reenable reading the install referrer, call AdjustVivoReferrer.readVivoReferrer(applicationContext) before you initialize the SDK.

Java
Kotlin
AdjustVivoReferrer.readVivoReferrer(applicationContext);
//...
Adjust.onCreate(config);