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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,85 @@
package com.unity3d.ironsourceads.interstitial;
import android.app.Activity;
import com.ironsource.mediationsdk.logger.IronSourceError;
import com.ironsource.ph;
import com.ironsource.qh;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
public final class InterstitialAd implements qh {
private final ph a;
private InterstitialAdListener b;
public InterstitialAd(ph interstitialAdInternal) {
Intrinsics.checkNotNullParameter(interstitialAdInternal, "interstitialAdInternal");
this.a = interstitialAdInternal;
interstitialAdInternal.a(this);
}
public final InterstitialAdInfo getAdInfo() {
return this.a.b();
}
public final InterstitialAdListener getListener() {
return this.b;
}
public final boolean isReadyToShow() {
return this.a.d();
}
@Override // com.ironsource.qh
public void onAdInstanceDidBecomeVisible() {
InterstitialAdListener interstitialAdListener = this.b;
if (interstitialAdListener != null) {
interstitialAdListener.onInterstitialAdShown(this);
}
}
@Override // com.ironsource.qh
public void onAdInstanceDidClick() {
InterstitialAdListener interstitialAdListener = this.b;
if (interstitialAdListener != null) {
interstitialAdListener.onInterstitialAdClicked(this);
}
}
@Override // com.ironsource.qh
public void onAdInstanceDidDismiss() {
InterstitialAdListener interstitialAdListener = this.b;
if (interstitialAdListener != null) {
interstitialAdListener.onInterstitialAdDismissed(this);
}
}
@Override // com.ironsource.qh
public void onAdInstanceDidFailedToShow(IronSourceError error) {
Intrinsics.checkNotNullParameter(error, "error");
InterstitialAdListener interstitialAdListener = this.b;
if (interstitialAdListener != null) {
interstitialAdListener.onInterstitialAdFailedToShow(this, error);
}
}
@Override // com.ironsource.qh
public void onAdInstanceDidReward(String str, int i) {
}
@Override // com.ironsource.qh
public void onAdInstanceDidShow() {
InterstitialAdListener interstitialAdListener = this.b;
if (interstitialAdListener != null) {
interstitialAdListener.onInterstitialAdShown(this);
}
}
public final void setListener(InterstitialAdListener interstitialAdListener) {
this.b = interstitialAdListener;
}
public final void show(Activity activity) {
Intrinsics.checkNotNullParameter(activity, "activity");
this.a.a(activity);
}
}