- 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
73 lines
2.0 KiB
Java
73 lines
2.0 KiB
Java
package com.applovin.impl.mediation;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import com.applovin.impl.ge;
|
|
import com.applovin.mediation.MaxAd;
|
|
import com.applovin.mediation.MaxAdWaterfallInfo;
|
|
import com.applovin.mediation.MaxNetworkResponseInfo;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class MaxAdWaterfallInfoImpl implements MaxAdWaterfallInfo {
|
|
private final ge a;
|
|
private final String b;
|
|
private final String c;
|
|
private final List d;
|
|
private final long e;
|
|
private final List f;
|
|
private final String g;
|
|
|
|
@Override // com.applovin.mediation.MaxAdWaterfallInfo
|
|
public long getLatencyMillis() {
|
|
return this.e;
|
|
}
|
|
|
|
@Override // com.applovin.mediation.MaxAdWaterfallInfo
|
|
public MaxAd getLoadedAd() {
|
|
return this.a;
|
|
}
|
|
|
|
public String getMCode() {
|
|
return this.g;
|
|
}
|
|
|
|
@Override // com.applovin.mediation.MaxAdWaterfallInfo
|
|
public String getName() {
|
|
return this.b;
|
|
}
|
|
|
|
@Override // com.applovin.mediation.MaxAdWaterfallInfo
|
|
public List<MaxNetworkResponseInfo> getNetworkResponses() {
|
|
return this.d;
|
|
}
|
|
|
|
public List<String> getPostbackUrls() {
|
|
return this.f;
|
|
}
|
|
|
|
@Override // com.applovin.mediation.MaxAdWaterfallInfo
|
|
public String getTestName() {
|
|
return this.c;
|
|
}
|
|
|
|
@NonNull
|
|
public String toString() {
|
|
return "MaxAdWaterfallInfo{name=" + this.b + ", testName=" + this.c + ", networkResponses=" + this.d + ", latencyMillis=" + this.e + '}';
|
|
}
|
|
|
|
public MaxAdWaterfallInfoImpl(ge geVar, long j, List<MaxNetworkResponseInfo> list, String str) {
|
|
this(geVar, geVar.X(), geVar.Y(), j, list, geVar.W(), str);
|
|
}
|
|
|
|
public MaxAdWaterfallInfoImpl(@Nullable ge geVar, String str, String str2, long j, List<MaxNetworkResponseInfo> list, List<String> list2, String str3) {
|
|
this.a = geVar;
|
|
this.b = str;
|
|
this.c = str2;
|
|
this.d = list;
|
|
this.e = j;
|
|
this.f = list2;
|
|
this.g = str3;
|
|
}
|
|
}
|