Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
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));
}
}