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,52 @@
package com.applovin.impl;
import android.text.TextUtils;
import com.applovin.mediation.MaxAdFormat;
/* loaded from: classes.dex */
public class xe {
private a a;
private String b;
public enum a {
AD_UNIT_ID,
AD_FORMAT,
AD
}
public a a() {
return this.a;
}
public String b() {
return this.b;
}
private xe(a aVar, String str) {
this.a = aVar;
this.b = str;
}
public static xe a(ge geVar) {
String S = geVar.S();
if (TextUtils.isEmpty(S)) {
return null;
}
return new xe(a.AD, S);
}
public static xe a(MaxAdFormat maxAdFormat) {
String label = maxAdFormat.getLabel();
if (TextUtils.isEmpty(label)) {
return null;
}
return new xe(a.AD_FORMAT, label);
}
public static xe a(String str) {
if (TextUtils.isEmpty(str)) {
return null;
}
return new xe(a.AD_UNIT_ID, str);
}
}