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,111 @@
package com.mbridge.msdk.dycreator.bridge;
import com.mbridge.msdk.dycreator.f.a.a;
import com.mbridge.msdk.dycreator.wrapper.DyOption;
import com.mbridge.msdk.foundation.entity.CampaignEx;
/* loaded from: classes4.dex */
public class MBSplashData implements a {
private DyOption a;
private String b;
private String c;
private String d;
private String e;
private CampaignEx f;
private int g;
private int h;
private float i;
private float j;
private int k = 0;
public String getAdClickText() {
return this.c;
}
public String getAppInfo() {
return this.b;
}
@Override // com.mbridge.msdk.dycreator.f.a.a
public CampaignEx getBindData() {
return this.f;
}
public int getClickType() {
return this.k;
}
public String getCountDownText() {
return this.d;
}
public DyOption getDyOption() {
return this.a;
}
@Override // com.mbridge.msdk.dycreator.f.a.a
public DyOption getEffectData() {
return this.a;
}
public int getLogoImage() {
return this.h;
}
public String getLogoText() {
return this.e;
}
public int getNoticeImage() {
return this.g;
}
public float getxInScreen() {
return this.i;
}
public float getyInScreen() {
return this.j;
}
public void setAdClickText(String str) {
this.c = str;
}
public void setAppInfo(String str) {
this.b = str;
}
public void setClickType(int i) {
this.k = i;
}
public void setCountDownText(String str) {
this.d = str;
}
public void setLogoImage(int i) {
this.h = i;
}
public void setLogoText(String str) {
this.e = str;
}
public void setNoticeImage(int i) {
this.g = i;
}
public void setxInScreen(float f) {
this.i = f;
}
public void setyInScreen(float f) {
this.j = f;
}
public MBSplashData(DyOption dyOption) {
this.a = dyOption;
this.f = dyOption.getCampaignEx();
}
}