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,44 @@
package androidx.appcompat.app;
import android.os.LocaleList;
import androidx.annotation.RequiresApi;
import androidx.core.os.LocaleListCompat;
import java.util.LinkedHashSet;
import java.util.Locale;
@RequiresApi(24)
/* loaded from: classes.dex */
final class LocaleOverlayHelper {
private LocaleOverlayHelper() {
}
public static LocaleListCompat combineLocalesIfOverlayExists(LocaleListCompat localeListCompat, LocaleListCompat localeListCompat2) {
if (localeListCompat == null || localeListCompat.isEmpty()) {
return LocaleListCompat.getEmptyLocaleList();
}
return combineLocales(localeListCompat, localeListCompat2);
}
public static LocaleListCompat combineLocalesIfOverlayExists(LocaleList localeList, LocaleList localeList2) {
if (localeList == null || localeList.isEmpty()) {
return LocaleListCompat.getEmptyLocaleList();
}
return combineLocales(LocaleListCompat.wrap(localeList), LocaleListCompat.wrap(localeList2));
}
private static LocaleListCompat combineLocales(LocaleListCompat localeListCompat, LocaleListCompat localeListCompat2) {
Locale locale;
LinkedHashSet linkedHashSet = new LinkedHashSet();
for (int i = 0; i < localeListCompat.size() + localeListCompat2.size(); i++) {
if (i < localeListCompat.size()) {
locale = localeListCompat.get(i);
} else {
locale = localeListCompat2.get(i - localeListCompat.size());
}
if (locale != null) {
linkedHashSet.add(locale);
}
}
return LocaleListCompat.create((Locale[]) linkedHashSet.toArray(new Locale[linkedHashSet.size()]));
}
}