Files
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

63 lines
1.6 KiB
Java

package com.mbridge.msdk.foundation.entity;
import android.text.TextUtils;
import com.mbridge.msdk.foundation.tools.af;
import com.mbridge.msdk.system.NoProGuard;
import java.io.Serializable;
import org.json.JSONException;
import org.json.JSONObject;
/* loaded from: classes4.dex */
public class AabEntity implements NoProGuard, Serializable {
private static final String TAG = "AabEntity";
public int h3c;
public int hlp;
public int getH3c() {
return this.h3c;
}
public int getHlp() {
return this.hlp;
}
public void setH3c(int i) {
this.h3c = i;
}
public void setHlp(int i) {
this.hlp = i;
}
public static AabEntity parser(String str) {
if (TextUtils.isEmpty(str)) {
return null;
}
try {
JSONObject jSONObject = new JSONObject(str);
AabEntity aabEntity = new AabEntity();
if (jSONObject.has("hlp")) {
aabEntity.setHlp(jSONObject.optInt("hlp"));
}
if (jSONObject.has("h3c")) {
aabEntity.setH3c(jSONObject.optInt("h3c"));
}
return aabEntity;
} catch (Throwable th) {
af.b(TAG, th.getMessage());
return null;
}
}
public JSONObject toJson() {
JSONObject jSONObject = new JSONObject();
try {
jSONObject.put("hlp", this.hlp);
jSONObject.put("h3c", this.h3c);
} catch (JSONException e) {
af.b(TAG, e.getMessage());
}
return jSONObject;
}
}