- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
36 lines
1.1 KiB
Java
36 lines
1.1 KiB
Java
package com.unity3d.services.ads;
|
|
|
|
import android.app.Activity;
|
|
import android.content.Context;
|
|
import androidx.annotation.Nullable;
|
|
import com.unity3d.ads.IUnityAdsInitializationListener;
|
|
import com.unity3d.ads.IUnityAdsLoadListener;
|
|
import com.unity3d.ads.IUnityAdsShowListener;
|
|
import com.unity3d.ads.IUnityAdsTokenListener;
|
|
import com.unity3d.ads.UnityAdsLoadOptions;
|
|
import com.unity3d.ads.UnityAdsShowOptions;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public interface IUnityAds {
|
|
boolean getDebugMode();
|
|
|
|
@Nullable
|
|
String getToken();
|
|
|
|
void getToken(IUnityAdsTokenListener iUnityAdsTokenListener);
|
|
|
|
String getVersion();
|
|
|
|
void initialize(Context context, String str, boolean z, IUnityAdsInitializationListener iUnityAdsInitializationListener);
|
|
|
|
boolean isInitialized();
|
|
|
|
boolean isSupported();
|
|
|
|
void load(String str, UnityAdsLoadOptions unityAdsLoadOptions, IUnityAdsLoadListener iUnityAdsLoadListener);
|
|
|
|
void setDebugMode(boolean z);
|
|
|
|
void show(Activity activity, String str, UnityAdsShowOptions unityAdsShowOptions, IUnityAdsShowListener iUnityAdsShowListener);
|
|
}
|