adjust-icon

Meta Install Referrer

The Meta Install Referrer plugin enables the Adjust SDK to read Meta Install Referrer values on a device. The SDK then sends this information to Adjust's servers as part of the install payload.

To add the plugin to your app:

  1. Add the following dependency to your build.gradle file:

    dependencies {
    implementation 'com.adjust.sdk:adjust-android-meta-referrer:5.0.1'
    }
  2. Find your Meta app ID in your App Dashboard. See Meta's App Dashboard documentation for more information.

  3. Assign your App ID to the fbAppId property on your AdjustConfig instance.

    #include "Adjust/Adjust2dx.h"
    std::string appToken = "{YOUR_APP_TOKEN}";
    std::string environment = AdjustEnvironmentSandbox2dx;
    AdjustConfig2dx adjustConfig = AdjustConfig2dx(appToken, environment);
    adjustConfig.setFbAppId("{YOUR_FB_APP_ID}");
    Adjust2dx::initSdk(adjustConfig);