Files
rr3-apk/decompiled-community/sources/androidx/profileinstaller/DexProfileData.java
Daniel Elliott c080f0d97f 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
2026-02-18 15:48:36 -08:00

38 lines
928 B
Java

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;
}
}