com.adjust.sdk.TrackingState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adjust-android-criteo Show documentation
Show all versions of adjust-android-criteo Show documentation
The Criteo plugin for Adjust SDK for Android
package com.adjust.sdk;
public enum TrackingState {
OPTED_OUT(1);
private int value;
TrackingState(int value) {
this.value = value;
}
public int getValue() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy