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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,121 @@
package com.mbridge.msdk.click.entity;
import com.mbridge.msdk.system.NoProGuard;
import java.io.Serializable;
/* loaded from: classes4.dex */
public class JumpLoaderResult implements NoProGuard, Serializable {
public static final int CODE_DOWNLOAD = 3;
public static final int CODE_LINK = 2;
public static final int CODE_MARKET = 1;
public static final int CODE_NULL = 4;
private static final long serialVersionUID = 1;
private int code;
private String content;
private String exceptionMsg;
private String header;
private boolean is302Jump;
private boolean jumpDone;
private String msg;
private String noticeurl;
private int statusCode;
private boolean success;
private int type;
private String url;
public int getCode() {
return this.code;
}
public String getContent() {
return this.content;
}
public String getExceptionMsg() {
return this.exceptionMsg;
}
public String getHeader() {
return this.header;
}
public String getMsg() {
return this.msg;
}
public String getNoticeurl() {
return this.noticeurl;
}
public int getStatusCode() {
return this.statusCode;
}
public int getType() {
return this.type;
}
public String getUrl() {
return this.url;
}
public boolean isIs302Jump() {
return this.is302Jump;
}
public boolean isSuccess() {
return this.success;
}
public boolean isjumpDone() {
return this.jumpDone;
}
public void setCode(int i) {
this.code = i;
}
public void setContent(String str) {
this.content = str;
}
public void setExceptionMsg(String str) {
this.exceptionMsg = str;
}
public void setHeader(String str) {
this.header = str;
}
public void setIs302Jump(boolean z) {
this.is302Jump = z;
}
public void setMsg(String str) {
this.msg = str;
}
public void setNoticeurl(String str) {
this.noticeurl = str;
}
public void setStatusCode(int i) {
this.statusCode = i;
}
public void setSuccess(boolean z) {
this.success = z;
}
public void setType(int i) {
this.type = i;
}
public void setUrl(String str) {
this.url = str;
}
public void setjumpDone(boolean z) {
this.jumpDone = z;
}
}

View File

@@ -0,0 +1,24 @@
package com.mbridge.msdk.click.entity;
import androidx.annotation.NonNull;
/* loaded from: classes4.dex */
public final class a {
public String a;
public String b;
public String c;
public String d;
public int e;
public int f;
public String g;
public String h;
@NonNull
public final String toString() {
return "ClickResponseHeader{location='" + this.a + "', contentType='" + this.b + "', contentEncoding='" + this.c + "', referer='" + this.d + "', contentLength=" + this.e + ", statusCode=" + this.f + ", url='" + this.g + "', exception='" + this.h + "'}";
}
public final String a() {
return "statusCode=" + this.f + ", location=" + this.a + ", contentType=" + this.b + ", contentLength=" + this.e + ", contentEncoding=" + this.c + ", referer=" + this.d;
}
}

View File

@@ -0,0 +1,89 @@
package com.mbridge.msdk.click.entity;
import android.content.Context;
import com.mbridge.msdk.foundation.entity.CampaignEx;
/* loaded from: classes4.dex */
public final class b {
private Context a;
private String b;
private String c;
private String d;
private CampaignEx e;
private boolean f;
private boolean g;
private boolean h;
private int i;
public final Context a() {
return this.a;
}
public final void a(int i) {
this.i = i;
}
public final void a(Context context) {
this.a = context;
}
public final void a(CampaignEx campaignEx) {
this.e = campaignEx;
}
public final void a(String str) {
this.b = str;
}
public final void a(boolean z) {
this.f = z;
}
public final String b() {
return this.b;
}
public final void b(String str) {
this.c = str;
}
public final void b(boolean z) {
this.g = z;
}
public final String c() {
return this.c;
}
public final void c(String str) {
this.d = str;
}
public final void c(boolean z) {
this.h = z;
}
public final String d() {
return this.d;
}
public final CampaignEx e() {
return this.e;
}
public final boolean f() {
return this.f;
}
public final boolean g() {
return this.g;
}
public final boolean h() {
return this.h;
}
public final int i() {
return this.i;
}
}