- 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
83 lines
2.2 KiB
Java
83 lines
2.2 KiB
Java
package com.unity3d.ironsourceads.interstitial;
|
|
|
|
import android.os.Bundle;
|
|
import com.ironsource.oo;
|
|
import com.ironsource.qm;
|
|
import com.ironsource.xi;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class InterstitialAdRequest {
|
|
private final String a;
|
|
private final String b;
|
|
private final Bundle c;
|
|
private final oo d;
|
|
private final String e;
|
|
|
|
public static final class Builder {
|
|
private final String a;
|
|
private final String b;
|
|
private Bundle c;
|
|
|
|
public Builder(String instanceId, String adm) {
|
|
Intrinsics.checkNotNullParameter(instanceId, "instanceId");
|
|
Intrinsics.checkNotNullParameter(adm, "adm");
|
|
this.a = instanceId;
|
|
this.b = adm;
|
|
}
|
|
|
|
public final InterstitialAdRequest build() {
|
|
return new InterstitialAdRequest(this.a, this.b, this.c, null);
|
|
}
|
|
|
|
public final String getAdm() {
|
|
return this.b;
|
|
}
|
|
|
|
public final String getInstanceId() {
|
|
return this.a;
|
|
}
|
|
|
|
public final Builder withExtraParams(Bundle extraParams) {
|
|
Intrinsics.checkNotNullParameter(extraParams, "extraParams");
|
|
this.c = extraParams;
|
|
return this;
|
|
}
|
|
}
|
|
|
|
private InterstitialAdRequest(String str, String str2, Bundle bundle) {
|
|
this.a = str;
|
|
this.b = str2;
|
|
this.c = bundle;
|
|
this.d = new qm(str);
|
|
String b = xi.b();
|
|
Intrinsics.checkNotNullExpressionValue(b, "generateMultipleUniqueInstanceId()");
|
|
this.e = b;
|
|
}
|
|
|
|
public /* synthetic */ InterstitialAdRequest(String str, String str2, Bundle bundle, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(str, str2, bundle);
|
|
}
|
|
|
|
public final String getAdId$mediationsdk_release() {
|
|
return this.e;
|
|
}
|
|
|
|
public final String getAdm() {
|
|
return this.b;
|
|
}
|
|
|
|
public final Bundle getExtraParams() {
|
|
return this.c;
|
|
}
|
|
|
|
public final String getInstanceId() {
|
|
return this.a;
|
|
}
|
|
|
|
public final oo getProviderName$mediationsdk_release() {
|
|
return this.d;
|
|
}
|
|
}
|