- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
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;
|
|
}
|
|
}
|