Files
rr3-apk/decompiled-community/sources/com/unity3d/services/ads/IUnityAds.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

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