- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
20 lines
381 B
Java
20 lines
381 B
Java
package com.fyber.inneractive.sdk.external;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public enum InneractiveMediationName {
|
|
ADMOB("admob"),
|
|
DFP(InneractiveMediationNameConsts.DFP),
|
|
FYBER("fyber"),
|
|
OTHER("other");
|
|
|
|
final String key;
|
|
|
|
InneractiveMediationName(String str) {
|
|
this.key = str;
|
|
}
|
|
|
|
public String getKey() {
|
|
return this.key;
|
|
}
|
|
}
|