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,41 @@
package com.mbridge.msdk.dycreator.baseview;
import android.graphics.drawable.GradientDrawable;
import android.text.TextUtils;
/* loaded from: classes4.dex */
public class GradientOrientationUtils {
public static GradientDrawable.Orientation getOrientation(String str) {
try {
GradientDrawable.Orientation orientation = GradientDrawable.Orientation.TOP_BOTTOM;
if (TextUtils.equals(str, orientation.name())) {
return orientation;
}
GradientDrawable.Orientation orientation2 = GradientDrawable.Orientation.BL_TR;
if (!TextUtils.equals(str, orientation2.name())) {
orientation2 = GradientDrawable.Orientation.BOTTOM_TOP;
if (!TextUtils.equals(str, orientation2.name())) {
orientation2 = GradientDrawable.Orientation.BR_TL;
if (!TextUtils.equals(str, orientation2.name())) {
GradientDrawable.Orientation orientation3 = GradientDrawable.Orientation.LEFT_RIGHT;
if (!TextUtils.equals(str, orientation3.name())) {
orientation3 = GradientDrawable.Orientation.RIGHT_LEFT;
if (!TextUtils.equals(str, orientation3.name())) {
orientation3 = GradientDrawable.Orientation.TL_BR;
if (!TextUtils.equals(str, orientation3.name())) {
if (!TextUtils.equals(str, orientation2.name())) {
return orientation;
}
}
}
}
return orientation3;
}
}
}
return orientation2;
} catch (Exception unused) {
return GradientDrawable.Orientation.TOP_BOTTOM;
}
}
}