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,28 @@
package androidx.core.text;
import android.text.Spannable;
import android.text.SpannableString;
import kotlin.jvm.internal.SourceDebugExtension;
import kotlin.ranges.IntRange;
@SourceDebugExtension({"SMAP\nSpannableString.kt\nKotlin\n*S Kotlin\n*F\n+ 1 SpannableString.kt\nandroidx/core/text/SpannableStringKt\n+ 2 SpannedString.kt\nandroidx/core/text/SpannedStringKt\n+ 3 _Arrays.kt\nkotlin/collections/ArraysKt___ArraysKt\n*L\n1#1,66:1\n31#2,4:67\n13579#3,2:71\n*S KotlinDebug\n*F\n+ 1 SpannableString.kt\nandroidx/core/text/SpannableStringKt\n*L\n32#1:67,4\n32#1:71,2\n*E\n"})
/* loaded from: classes.dex */
public final class SpannableStringKt {
public static final Spannable toSpannable(CharSequence charSequence) {
return SpannableString.valueOf(charSequence);
}
public static final void clearSpans(Spannable spannable) {
for (Object obj : spannable.getSpans(0, spannable.length(), Object.class)) {
spannable.removeSpan(obj);
}
}
public static final void set(Spannable spannable, int i, int i2, Object obj) {
spannable.setSpan(obj, i, i2, 17);
}
public static final void set(Spannable spannable, IntRange intRange, Object obj) {
spannable.setSpan(obj, intRange.getStart().intValue(), intRange.getEndInclusive().intValue(), 17);
}
}