Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 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;
}
}