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,44 @@
package com.fyber.inneractive.sdk.config.enums;
import android.text.TextUtils;
import java.util.HashMap;
import java.util.Map;
/* loaded from: classes2.dex */
public enum Orientation {
LANDSCAPE("landscape", false),
PORTRAIT("portrait", false),
USER("user", true),
NONE("none", true);
private static final Map<String, Orientation> CONSTANTS = new HashMap();
public boolean allowOrientationChange;
private final String value;
static {
for (Orientation orientation : values()) {
CONSTANTS.put(orientation.value, orientation);
}
}
Orientation(String str, boolean z) {
this.value = str;
this.allowOrientationChange = z;
}
public static Orientation fromValue(String str) {
if (TextUtils.isEmpty(str)) {
return null;
}
return CONSTANTS.get(str);
}
@Override // java.lang.Enum
public String toString() {
return this.value;
}
public String value() {
return this.value;
}
}