- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
41 lines
1.5 KiB
Java
41 lines
1.5 KiB
Java
package csdk.gluads;
|
|
|
|
import csdk.gluads.util.ISerializableJsonObject;
|
|
import csdk.gluads.util.JsonUtil;
|
|
import java.util.Map;
|
|
import org.json.JSONException;
|
|
import org.json.JSONStringer;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public class PlacementEvent implements ISerializableJsonObject {
|
|
public final String advertisementType;
|
|
public final Throwable error;
|
|
public final Map<String, Object> extra;
|
|
public final String placement;
|
|
public final String status;
|
|
public final long textureInfo;
|
|
|
|
public PlacementEvent(String str, String str2, String str3, Throwable th, Map<String, Object> map, long j) {
|
|
this.advertisementType = str;
|
|
this.placement = str2;
|
|
this.status = str3;
|
|
this.error = th;
|
|
this.extra = map;
|
|
this.textureInfo = j;
|
|
}
|
|
|
|
public PlacementEvent(String str, String str2, String str3, Throwable th, Map<String, Object> map) {
|
|
this(str, str2, str3, th, map, 0L);
|
|
}
|
|
|
|
@Override // csdk.gluads.util.ISerializableJsonObject
|
|
public void write(JSONStringer jSONStringer) throws JSONException {
|
|
JsonUtil.optKeyValue(jSONStringer, "advertisementType", this.advertisementType);
|
|
JsonUtil.optKeyValue(jSONStringer, "placement", this.placement);
|
|
JsonUtil.optKeyValue(jSONStringer, "status", this.status);
|
|
JsonUtil.optKeyValue(jSONStringer, "error", this.error);
|
|
JsonUtil.optKeyValue(jSONStringer, "extra", this.extra);
|
|
JsonUtil.optKeyValue(jSONStringer, "textureInfo", Long.valueOf(this.textureInfo));
|
|
}
|
|
}
|