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,58 @@
package com.tapjoy;
import com.ironsource.v8;
import com.mbridge.msdk.foundation.entity.CampaignEx;
/* loaded from: classes4.dex */
public enum TJEntryPoint {
ENTRY_POINT_UNKNOWN(null),
ENTRY_POINT_OTHER("other"),
ENTRY_POINT_MAIN_MENU("main_menu"),
ENTRY_POINT_HUD("hud"),
ENTRY_POINT_EXIT("exit"),
ENTRY_POINT_FAIL(v8.f.e),
ENTRY_POINT_COMPLETE(CampaignEx.JSON_NATIVE_VIDEO_COMPLETE),
ENTRY_POINT_INBOX("inbox"),
ENTRY_POINT_INIT("initialisation"),
ENTRY_POINT_STORE(v8.h.U);
public final String a;
TJEntryPoint(String str) {
this.a = str;
}
public static TJEntryPoint fromOrdinal(int i) {
return values()[i];
}
public static TJEntryPoint fromString(String str) {
str.getClass();
switch (str) {
case "complete":
return ENTRY_POINT_COMPLETE;
case "main_menu":
return ENTRY_POINT_MAIN_MENU;
case "hud":
return ENTRY_POINT_HUD;
case "exit":
return ENTRY_POINT_EXIT;
case "fail":
return ENTRY_POINT_FAIL;
case "inbox":
return ENTRY_POINT_INBOX;
case "other":
return ENTRY_POINT_OTHER;
case "store":
return ENTRY_POINT_STORE;
case "initialisation":
return ENTRY_POINT_INIT;
default:
return ENTRY_POINT_UNKNOWN;
}
}
public String getValue() {
return this.a;
}
}