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,38 @@
package com.google.android.datatransport.runtime.util;
import android.util.SparseArray;
import com.google.android.datatransport.Priority;
import java.util.HashMap;
/* loaded from: classes2.dex */
public abstract class PriorityMapping {
public static HashMap PRIORITY_INT_MAP;
public static SparseArray PRIORITY_MAP = new SparseArray();
static {
HashMap hashMap = new HashMap();
PRIORITY_INT_MAP = hashMap;
hashMap.put(Priority.DEFAULT, 0);
PRIORITY_INT_MAP.put(Priority.VERY_LOW, 1);
PRIORITY_INT_MAP.put(Priority.HIGHEST, 2);
for (Priority priority : PRIORITY_INT_MAP.keySet()) {
PRIORITY_MAP.append(((Integer) PRIORITY_INT_MAP.get(priority)).intValue(), priority);
}
}
public static Priority valueOf(int i) {
Priority priority = (Priority) PRIORITY_MAP.get(i);
if (priority != null) {
return priority;
}
throw new IllegalArgumentException("Unknown Priority for value " + i);
}
public static int toInt(Priority priority) {
Integer num = (Integer) PRIORITY_INT_MAP.get(priority);
if (num == null) {
throw new IllegalStateException("PriorityMapping is missing known Priority value " + priority);
}
return num.intValue();
}
}