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;
}
}