Files
rr3-apk/decompiled/sources/com/google/android/gms/ads/mediation/MediationAdConfiguration.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

86 lines
2.1 KiB
Java

package com.google.android.gms.ads.mediation;
import android.content.Context;
import android.location.Location;
import android.os.Bundle;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/* loaded from: classes2.dex */
public class MediationAdConfiguration {
public static final int TAG_FOR_CHILD_DIRECTED_TREATMENT_FALSE = 0;
public static final int TAG_FOR_CHILD_DIRECTED_TREATMENT_TRUE = 1;
public static final int TAG_FOR_CHILD_DIRECTED_TREATMENT_UNSPECIFIED = -1;
private final String zza;
private final Bundle zzb;
private final Bundle zzc;
private final Context zzd;
private final boolean zze;
private final int zzf;
private final int zzg;
@Nullable
private final String zzh;
private final String zzi;
@Retention(RetentionPolicy.SOURCE)
public @interface TagForChildDirectedTreatment {
}
public MediationAdConfiguration(@NonNull Context context, @NonNull String str, @NonNull Bundle bundle, @NonNull Bundle bundle2, boolean z, @Nullable Location location, int i, int i2, @Nullable String str2, @NonNull String str3) {
this.zza = str;
this.zzb = bundle;
this.zzc = bundle2;
this.zzd = context;
this.zze = z;
this.zzf = i;
this.zzg = i2;
this.zzh = str2;
this.zzi = str3;
}
@NonNull
public String getBidResponse() {
return this.zza;
}
@NonNull
public Context getContext() {
return this.zzd;
}
@Nullable
public String getMaxAdContentRating() {
return this.zzh;
}
@NonNull
public Bundle getMediationExtras() {
return this.zzc;
}
@NonNull
public Bundle getServerParameters() {
return this.zzb;
}
@NonNull
public String getWatermark() {
return this.zzi;
}
public boolean isTestRequest() {
return this.zze;
}
public int taggedForChildDirectedTreatment() {
return this.zzf;
}
public int taggedForUnderAgeTreatment() {
return this.zzg;
}
}