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,40 @@
package kotlin;
import kotlin.enums.EnumEntries;
import kotlin.enums.EnumEntriesKt;
/* JADX WARN: Failed to restore enum class, 'enum' modifier and super class removed */
/* JADX WARN: Unknown enum class pattern. Please report as an issue! */
/* loaded from: classes5.dex */
public final class LazyThreadSafetyMode {
private static final /* synthetic */ EnumEntries $ENTRIES;
private static final /* synthetic */ LazyThreadSafetyMode[] $VALUES;
public static final LazyThreadSafetyMode SYNCHRONIZED = new LazyThreadSafetyMode("SYNCHRONIZED", 0);
public static final LazyThreadSafetyMode PUBLICATION = new LazyThreadSafetyMode("PUBLICATION", 1);
public static final LazyThreadSafetyMode NONE = new LazyThreadSafetyMode("NONE", 2);
private static final /* synthetic */ LazyThreadSafetyMode[] $values() {
return new LazyThreadSafetyMode[]{SYNCHRONIZED, PUBLICATION, NONE};
}
public static EnumEntries getEntries() {
return $ENTRIES;
}
public static LazyThreadSafetyMode valueOf(String str) {
return (LazyThreadSafetyMode) Enum.valueOf(LazyThreadSafetyMode.class, str);
}
public static LazyThreadSafetyMode[] values() {
return (LazyThreadSafetyMode[]) $VALUES.clone();
}
private LazyThreadSafetyMode(String str, int i) {
}
static {
LazyThreadSafetyMode[] $values = $values();
$VALUES = $values;
$ENTRIES = EnumEntriesKt.enumEntries($values);
}
}