- 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
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();
|
|
}
|