Files
rr3-apk/decompiled/sources/com/tapjoy/internal/g2.java
Daniel Elliott f9d20bb3fc 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>
2026-02-18 14:52:23 -08:00

58 lines
1.6 KiB
Java

package com.tapjoy.internal;
import com.ironsource.v8;
import java.util.ArrayList;
import org.json.JSONArray;
import org.json.JSONObject;
/* loaded from: classes4.dex */
public final class g2 {
public final String a;
public final Long b;
public final String c;
public final String d;
public final ArrayList e = new ArrayList();
public g2(JSONObject jSONObject) {
this.a = null;
this.b = null;
this.c = null;
this.d = null;
if (jSONObject != null) {
this.a = jSONObject.optString(v8.h.U);
this.b = Long.valueOf(jSONObject.optLong("placement_request_content_retry_timeout"));
this.c = jSONObject.optString("logging_level");
jSONObject.optBoolean("error_enabled");
this.d = jSONObject.optString("override_service_url");
JSONArray optJSONArray = jSONObject.optJSONArray("assets");
int length = optJSONArray != null ? optJSONArray.length() : 0;
for (int i = 0; i < length; i++) {
JSONObject optJSONObject = optJSONArray != null ? optJSONArray.optJSONObject(i) : null;
if (optJSONObject != null) {
this.e.add(new s1(optJSONObject));
}
}
}
}
public final ArrayList a() {
return this.e;
}
public final String b() {
return this.c;
}
public final String c() {
return this.d;
}
public final Long d() {
return this.b;
}
public final String e() {
return this.a;
}
}