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,12 @@
package com.mbridge.msdk.newreward.function.command.retention;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
/* loaded from: classes4.dex */
public @interface AutoNew {
}

View File

@@ -0,0 +1,26 @@
package com.mbridge.msdk.newreward.function.command.retention;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
/* loaded from: classes4.dex */
public class AutoNewProcess {
public static void bind(Object obj) {
for (Field field : obj.getClass().getDeclaredFields()) {
if (((AutoNew) field.getAnnotation(AutoNew.class)) != null) {
field.setAccessible(true);
try {
field.set(obj, field.getType().getConstructor(new Class[0]).newInstance(new Object[0]));
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InstantiationException e2) {
e2.printStackTrace();
} catch (NoSuchMethodException e3) {
e3.printStackTrace();
} catch (InvocationTargetException e4) {
e4.printStackTrace();
}
}
}
}
}

View File

@@ -0,0 +1,13 @@
package com.mbridge.msdk.newreward.function.command.retention;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
/* loaded from: classes4.dex */
public @interface BridgeParameter {
String key() default "";
}

View File

@@ -0,0 +1,44 @@
package com.mbridge.msdk.newreward.function.command.retention;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/* loaded from: classes4.dex */
public class ReportAnnotation {
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface ClassInfo {
String value();
}
@Target({ElementType.LOCAL_VARIABLE, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface FieldInfo {
int[] value();
}
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface MethodInfo {
String className() default "-1";
boolean isParameter() default false;
String key() default "-1";
String methodName() default "-1";
String methodParameter() default "-1";
String reportType() default "-1";
}
@Target({ElementType.PACKAGE})
@Retention(RetentionPolicy.RUNTIME)
public @interface PackageInfo {
String value();
}
}

View File

@@ -0,0 +1,22 @@
package com.mbridge.msdk.newreward.function.command.retention;
import com.mbridge.msdk.newreward.a.e;
import com.mbridge.msdk.newreward.function.command.retention.ReportAnnotation;
import java.lang.reflect.Method;
/* loaded from: classes4.dex */
public class ReportProcess {
static e adapterModel;
public static void init(e eVar) {
adapterModel = eVar;
}
public static void reportProcessAtThisTime(Object obj) {
for (Method method : obj.getClass().getDeclaredMethods()) {
if (!method.isAnnotationPresent(ReportAnnotation.MethodInfo.class)) {
return;
}
}
}
}