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,45 @@
package com.mbridge.msdk.playercommon.exoplayer2.util;
import java.util.Arrays;
/* loaded from: classes4.dex */
public final class LongArray {
private static final int DEFAULT_INITIAL_CAPACITY = 32;
private int size;
private long[] values;
public final int size() {
return this.size;
}
public LongArray() {
this(32);
}
public LongArray(int i) {
this.values = new long[i];
}
public final void add(long j) {
int i = this.size;
long[] jArr = this.values;
if (i == jArr.length) {
this.values = Arrays.copyOf(jArr, i * 2);
}
long[] jArr2 = this.values;
int i2 = this.size;
this.size = i2 + 1;
jArr2[i2] = j;
}
public final long get(int i) {
if (i < 0 || i >= this.size) {
throw new IndexOutOfBoundsException("Invalid index " + i + ", size is " + this.size);
}
return this.values[i];
}
public final long[] toArray() {
return Arrays.copyOf(this.values, this.size);
}
}