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,65 @@
package com.google.firebase.perf.util;
import android.support.v4.media.session.PlaybackStateCompat;
/* loaded from: classes3.dex */
public enum StorageUnit {
TERABYTES(1099511627776L) { // from class: com.google.firebase.perf.util.StorageUnit.1
@Override // com.google.firebase.perf.util.StorageUnit
public long convert(long j, StorageUnit storageUnit) {
return storageUnit.toTerabytes(j);
}
},
GIGABYTES(1073741824) { // from class: com.google.firebase.perf.util.StorageUnit.2
@Override // com.google.firebase.perf.util.StorageUnit
public long convert(long j, StorageUnit storageUnit) {
return storageUnit.toGigabytes(j);
}
},
MEGABYTES(PlaybackStateCompat.ACTION_SET_CAPTIONING_ENABLED) { // from class: com.google.firebase.perf.util.StorageUnit.3
@Override // com.google.firebase.perf.util.StorageUnit
public long convert(long j, StorageUnit storageUnit) {
return storageUnit.toMegabytes(j);
}
},
KILOBYTES(PlaybackStateCompat.ACTION_PLAY_FROM_MEDIA_ID) { // from class: com.google.firebase.perf.util.StorageUnit.4
@Override // com.google.firebase.perf.util.StorageUnit
public long convert(long j, StorageUnit storageUnit) {
return storageUnit.toKilobytes(j);
}
},
BYTES(1) { // from class: com.google.firebase.perf.util.StorageUnit.5
@Override // com.google.firebase.perf.util.StorageUnit
public long convert(long j, StorageUnit storageUnit) {
return storageUnit.toBytes(j);
}
};
long numBytes;
public abstract long convert(long j, StorageUnit storageUnit);
public long toBytes(long j) {
return j * this.numBytes;
}
StorageUnit(long j) {
this.numBytes = j;
}
public long toKilobytes(long j) {
return (j * this.numBytes) / KILOBYTES.numBytes;
}
public long toMegabytes(long j) {
return (j * this.numBytes) / MEGABYTES.numBytes;
}
public long toGigabytes(long j) {
return (j * this.numBytes) / GIGABYTES.numBytes;
}
public long toTerabytes(long j) {
return (j * this.numBytes) / TERABYTES.numBytes;
}
}