Configuring Opt-outs

By default, SDK tracks certain device identifiers like GAID, Android-id, activity names, etc. If required you can choose to opt-out of this tracking by using the TrackingOptOutConfig.
Refer to the API reference of TrackingOptOutConfig for more details on the available opt-outs. Use the configureTrackingOptOut() to pass on the configuration to the SDK.

Kotlin Java
val trackingOptOut = mutableSetOf<Class<*>>()
trackingOptOut.add(YourActivityName::class.java)
val trackingOptOutConfig = TrackingOptOutConfig(
    isCarrierTrackingEnabled = true,
    isDeviceAttributeTrackingEnabled = true,
    trackingOptOut
)

val moengage = MoEngage.Builder(application, appId)
    .configureTrackingOptOut(trackingOptOutConfig)
    .build()
    MoEngage.initialise(moengage)

Previous

Next

Was this article helpful?
0 out of 0 found this helpful

How can we improve this article?