- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
35 lines
772 B
Java
35 lines
772 B
Java
package com.google.android.gms.ads.mediation;
|
|
|
|
import android.location.Location;
|
|
import androidx.annotation.NonNull;
|
|
import java.util.Date;
|
|
import java.util.Set;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes2.dex */
|
|
public interface MediationAdRequest {
|
|
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;
|
|
|
|
@NonNull
|
|
@Deprecated
|
|
Date getBirthday();
|
|
|
|
@Deprecated
|
|
int getGender();
|
|
|
|
@NonNull
|
|
Set<String> getKeywords();
|
|
|
|
@NonNull
|
|
Location getLocation();
|
|
|
|
@Deprecated
|
|
boolean isDesignedForFamilies();
|
|
|
|
boolean isTesting();
|
|
|
|
int taggedForChildDirectedTreatment();
|
|
}
|