com.tapstream.sdk.AdvertisingID Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tapstream-core Show documentation
Show all versions of tapstream-core Show documentation
This library contains the building blocks for a Tapstream Java SDK
package com.tapstream.sdk;
public class AdvertisingID {
private final String id;
private final boolean limitAdTracking;
public AdvertisingID(String id, boolean limitAdTracking) {
this.id = id;
this.limitAdTracking = limitAdTracking;
}
public String getId() {
return id;
}
public boolean isLimitAdTracking() {
return limitAdTracking;
}
public boolean isValid(){
return id != null && id.length() > 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy