Skip to content

Version 4.4.7

Compare
Choose a tag to compare
@samdozor samdozor released this 06 May 16:24
· 1161 commits to main since this release

This release introduces a new API allowing you to disable collection of Android ID. This API must be called on every app launch, prior to calling MParticle.start(), for example:

package com.example.myapp;

import android.app.Application;
import com.mparticle.MParticle;

public class MyApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        MParticle.setAndroidIdDisabled(true);
        MParticle.start(this);
    }
}