- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
49 lines
1.6 KiB
Java
49 lines
1.6 KiB
Java
package csdk.gluads;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public interface IAdvertising {
|
|
void destroy();
|
|
|
|
void discard(@NonNull String str, @NonNull String str2, @Nullable Map<String, Object> map);
|
|
|
|
Reward getReward(@NonNull String str, @NonNull String str2);
|
|
|
|
void internal_onNewSession();
|
|
|
|
void internal_setGemsData(@Nullable String str, @Nullable Map<String, Object> map);
|
|
|
|
void internal_updateAdsFrequency(@NonNull Map<String, Object> map);
|
|
|
|
void internal_updateCrossPromotion(@NonNull String str, @NonNull Map<String, Object> map, @Nullable Map<String, Object> map2);
|
|
|
|
void internal_updatePrivacyStatus(PrivacyStatus privacyStatus);
|
|
|
|
void internal_updateRewardList(@NonNull Map<String, Object> map);
|
|
|
|
boolean isLoaded(@NonNull String str, @NonNull String str2, @Nullable Map<String, Object> map);
|
|
|
|
void load(@NonNull String str, @NonNull String str2, @Nullable Map<String, Object> map);
|
|
|
|
@Deprecated
|
|
void onAdvertisementClick(@NonNull String str, @NonNull String str2, @Nullable Map<String, Object> map);
|
|
|
|
@Deprecated
|
|
void onAdvertisementImpression(@NonNull String str, @NonNull String str2, @Nullable Map<String, Object> map);
|
|
|
|
void onPause();
|
|
|
|
void onResume();
|
|
|
|
void setAdvertisingListener(@Nullable IAdvertisingListener iAdvertisingListener);
|
|
|
|
void setCustomProperties(@Nullable Map<String, Object> map);
|
|
|
|
void setUserIdentifier(@Nullable String str, @Nullable Map<String, Object> map);
|
|
|
|
void show(@NonNull String str, @NonNull String str2, @Nullable Map<String, Object> map);
|
|
}
|