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,37 @@
package androidx.profileinstaller;
import androidx.annotation.NonNull;
import java.util.TreeMap;
/* loaded from: classes.dex */
class DexProfileData {
@NonNull
final String apkName;
int classSetSize;
@NonNull
int[] classes;
final long dexChecksum;
@NonNull
final String dexName;
final int hotMethodRegionSize;
long mTypeIdCount;
@NonNull
final TreeMap<Integer, Integer> methods;
final int numMethodIds;
public DexProfileData(@NonNull String str, @NonNull String str2, long j, long j2, int i, int i2, int i3, @NonNull int[] iArr, @NonNull TreeMap<Integer, Integer> treeMap) {
this.apkName = str;
this.dexName = str2;
this.dexChecksum = j;
this.mTypeIdCount = j2;
this.classSetSize = i;
this.hotMethodRegionSize = i2;
this.numMethodIds = i3;
this.classes = iArr;
this.methods = treeMap;
}
}