- 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
52 lines
1.1 KiB
Java
52 lines
1.1 KiB
Java
package com.ironsource.adqualitysdk.sdk;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public enum ISAdQualityMediationNetwork {
|
|
UNKNOWN(-1),
|
|
ADMOB(0),
|
|
DT_FAIR_BID(1),
|
|
HELIUM(2),
|
|
LEVEL_PLAY(3),
|
|
MAX(4),
|
|
UNITY(5),
|
|
SELF_MEDIATED(6),
|
|
OTHER(7);
|
|
|
|
|
|
/* renamed from: メ, reason: contains not printable characters */
|
|
private final int f36;
|
|
|
|
public static ISAdQualityMediationNetwork fromInt(int i) {
|
|
switch (i) {
|
|
case -1:
|
|
return UNKNOWN;
|
|
case 0:
|
|
return ADMOB;
|
|
case 1:
|
|
return DT_FAIR_BID;
|
|
case 2:
|
|
return HELIUM;
|
|
case 3:
|
|
return LEVEL_PLAY;
|
|
case 4:
|
|
return MAX;
|
|
case 5:
|
|
return UNITY;
|
|
case 6:
|
|
return SELF_MEDIATED;
|
|
case 7:
|
|
return OTHER;
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public final int getValue() {
|
|
return this.f36;
|
|
}
|
|
|
|
ISAdQualityMediationNetwork(int i) {
|
|
this.f36 = i;
|
|
}
|
|
}
|