- 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
46 lines
1.4 KiB
Java
46 lines
1.4 KiB
Java
package com.google.android.ump;
|
|
|
|
import android.app.Activity;
|
|
import androidx.annotation.RecentlyNonNull;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface ConsentInformation {
|
|
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
public @interface ConsentStatus {
|
|
public static final int NOT_REQUIRED = 1;
|
|
public static final int OBTAINED = 3;
|
|
public static final int REQUIRED = 2;
|
|
public static final int UNKNOWN = 0;
|
|
}
|
|
|
|
public interface OnConsentInfoUpdateFailureListener {
|
|
void onConsentInfoUpdateFailure(@RecentlyNonNull FormError formError);
|
|
}
|
|
|
|
public interface OnConsentInfoUpdateSuccessListener {
|
|
void onConsentInfoUpdateSuccess();
|
|
}
|
|
|
|
public enum PrivacyOptionsRequirementStatus {
|
|
UNKNOWN,
|
|
NOT_REQUIRED,
|
|
REQUIRED
|
|
}
|
|
|
|
boolean canRequestAds();
|
|
|
|
int getConsentStatus();
|
|
|
|
@RecentlyNonNull
|
|
PrivacyOptionsRequirementStatus getPrivacyOptionsRequirementStatus();
|
|
|
|
boolean isConsentFormAvailable();
|
|
|
|
void requestConsentInfoUpdate(@RecentlyNonNull Activity activity, @RecentlyNonNull ConsentRequestParameters consentRequestParameters, @RecentlyNonNull OnConsentInfoUpdateSuccessListener onConsentInfoUpdateSuccessListener, @RecentlyNonNull OnConsentInfoUpdateFailureListener onConsentInfoUpdateFailureListener);
|
|
|
|
void reset();
|
|
}
|