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,32 @@
package com.digitalturbine.ignite.authenticator.events;
import java.util.HashMap;
import java.util.Map;
/* loaded from: classes2.dex */
public enum c {
FAILED_INIT_ENCRYPTION("failed to init encryption"),
FAILED_EXTRACT_ENCRYPTED_DATA("failed to extract encrypted data"),
FAILED_STORE_ENCRYPTED_DATA("failed to store encrypted data"),
IGNITE_SERVICE_UNAVAILABLE("Ignite service unavailable"),
IGNITE_SERVICE_INVALID_SESSION("Invalid session token"),
ONE_DT_EMPTY_ENTITY("received empty one dt from the service"),
ONE_DT_AUTHENTICATOR_DESTROYED("authenticator already destroyed");
private static final Map<String, c> CONSTANTS = new HashMap();
private final String value;
static {
for (c cVar : values()) {
CONSTANTS.put(cVar.value, cVar);
}
}
c(String str) {
this.value = str;
}
public final String e() {
return this.value;
}
}