ADD week 5

This commit is contained in:
2025-03-31 16:33:42 +02:00
parent 86f265f22d
commit bf645048e6
4927 changed files with 544053 additions and 0 deletions

View File

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