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,66 @@
package com.mbridge.msdk.out;
import com.mbridge.msdk.system.NoProGuard;
import java.io.Serializable;
/* loaded from: classes4.dex */
public class RewardInfo implements NoProGuard, Serializable {
private boolean isCompleteView;
private int rewardAlertStatus;
private String rewardAmount;
private String rewardName;
public int getRewardAlertStatus() {
return this.rewardAlertStatus;
}
public String getRewardAmount() {
return this.rewardAmount;
}
public String getRewardName() {
return this.rewardName;
}
public boolean isCompleteView() {
return this.isCompleteView;
}
public void setCompleteView(boolean z) {
this.isCompleteView = z;
}
public void setRewardAlertStatus(int i) {
this.rewardAlertStatus = i;
}
public void setRewardAmount(String str) {
this.rewardAmount = str;
}
public void setRewardName(String str) {
this.rewardName = str;
}
public RewardInfo(boolean z, int i) {
this.isCompleteView = z;
this.rewardAlertStatus = i;
}
public RewardInfo(boolean z, String str, String str2) {
this.isCompleteView = z;
this.rewardName = str;
this.rewardAmount = str2;
}
public RewardInfo(boolean z, String str, String str2, int i) {
this.isCompleteView = z;
this.rewardName = str;
this.rewardAmount = str2;
this.rewardAlertStatus = i;
}
public String toString() {
return "RewardInfo{isCompleteView=" + this.isCompleteView + ", rewardName='" + this.rewardName + "', rewardAmount='" + this.rewardAmount + "', rewardAlertStatus=" + this.rewardAlertStatus + '}';
}
}