Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package com.ironsource.mediationsdk.ads.nativead.interfaces;
import com.ironsource.mediationsdk.bidding.BiddingDataCallback;
import com.ironsource.mediationsdk.sdk.AdUnitAdapterInterface;
import java.util.Map;
import org.json.JSONObject;
/* loaded from: classes4.dex */
public interface NativeAdAdapterInterface extends AdUnitAdapterInterface {
void collectNativeAdBiddingData(JSONObject jSONObject, JSONObject jSONObject2, BiddingDataCallback biddingDataCallback);
void destroyNativeAd(JSONObject jSONObject);
Map<String, Object> getNativeAdBiddingData(JSONObject jSONObject, JSONObject jSONObject2);
void initNativeAdForBidding(String str, String str2, JSONObject jSONObject, NativeAdSmashListener nativeAdSmashListener);
void initNativeAds(String str, String str2, JSONObject jSONObject, NativeAdSmashListener nativeAdSmashListener);
void loadNativeAd(JSONObject jSONObject, JSONObject jSONObject2, NativeAdSmashListener nativeAdSmashListener);
void loadNativeAdForBidding(JSONObject jSONObject, JSONObject jSONObject2, String str, NativeAdSmashListener nativeAdSmashListener);
}

View File

@@ -0,0 +1,36 @@
package com.ironsource.mediationsdk.ads.nativead.interfaces;
import android.graphics.drawable.Drawable;
import android.net.Uri;
/* loaded from: classes4.dex */
public interface NativeAdDataInterface {
public static class Image {
private final Drawable a;
private final Uri b;
public Image(Drawable drawable, Uri uri) {
this.a = drawable;
this.b = uri;
}
public final Drawable getDrawable() {
return this.a;
}
public final Uri getUri() {
return this.b;
}
}
String getAdvertiser();
String getBody();
String getCallToAction();
Image getIcon();
String getTitle();
}

View File

@@ -0,0 +1,11 @@
package com.ironsource.mediationsdk.ads.nativead.interfaces;
import com.ironsource.mediationsdk.ads.nativead.LevelPlayNativeAd;
import com.ironsource.mediationsdk.adunit.adapter.utility.AdInfo;
/* loaded from: classes4.dex */
public interface NativeAdInteractionListener {
void onAdClicked(LevelPlayNativeAd levelPlayNativeAd, AdInfo adInfo);
void onAdImpression(LevelPlayNativeAd levelPlayNativeAd, AdInfo adInfo);
}

View File

@@ -0,0 +1,8 @@
package com.ironsource.mediationsdk.ads.nativead.interfaces;
/* loaded from: classes4.dex */
public interface NativeAdInterface {
void destroyAd();
void loadAd();
}

View File

@@ -0,0 +1,12 @@
package com.ironsource.mediationsdk.ads.nativead.interfaces;
import com.ironsource.mediationsdk.ads.nativead.LevelPlayNativeAd;
import com.ironsource.mediationsdk.adunit.adapter.utility.AdInfo;
import com.ironsource.mediationsdk.logger.IronSourceError;
/* loaded from: classes4.dex */
public interface NativeAdLoadListener {
void onAdLoadFailed(LevelPlayNativeAd levelPlayNativeAd, IronSourceError ironSourceError);
void onAdLoaded(LevelPlayNativeAd levelPlayNativeAd, AdInfo adInfo);
}

View File

@@ -0,0 +1,20 @@
package com.ironsource.mediationsdk.ads.nativead.interfaces;
import com.ironsource.mediationsdk.ads.nativead.AdapterNativeAdData;
import com.ironsource.mediationsdk.adunit.adapter.internal.nativead.AdapterNativeAdViewBinder;
import com.ironsource.mediationsdk.logger.IronSourceError;
/* loaded from: classes4.dex */
public interface NativeAdSmashListener {
void onNativeAdClicked();
void onNativeAdInitFailed(IronSourceError ironSourceError);
void onNativeAdInitSuccess();
void onNativeAdLoadFailed(IronSourceError ironSourceError);
void onNativeAdLoaded(AdapterNativeAdData adapterNativeAdData, AdapterNativeAdViewBinder adapterNativeAdViewBinder);
void onNativeAdShown();
}

View File

@@ -0,0 +1,19 @@
package com.ironsource.mediationsdk.ads.nativead.interfaces;
import android.view.View;
import com.ironsource.mediationsdk.ads.nativead.LevelPlayMediaView;
/* loaded from: classes4.dex */
public interface NativeAdViewBinderInterface {
void setAdvertiserView(View view);
void setBodyView(View view);
void setCallToActionView(View view);
void setIconView(View view);
void setMediaView(LevelPlayMediaView levelPlayMediaView);
void setTitleView(View view);
}