- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
25 lines
1.2 KiB
Java
25 lines
1.2 KiB
Java
package com.ironsource.mediationsdk.sdk;
|
|
|
|
import com.ironsource.mediationsdk.bidding.BiddingDataCallback;
|
|
import java.util.Map;
|
|
import org.json.JSONObject;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public interface InterstitialAdapterInterface extends AdUnitAdapterInterface {
|
|
void collectInterstitialBiddingData(JSONObject jSONObject, JSONObject jSONObject2, BiddingDataCallback biddingDataCallback);
|
|
|
|
Map<String, Object> getInterstitialBiddingData(JSONObject jSONObject, JSONObject jSONObject2);
|
|
|
|
void initInterstitial(String str, String str2, JSONObject jSONObject, InterstitialSmashListener interstitialSmashListener);
|
|
|
|
void initInterstitialForBidding(String str, String str2, JSONObject jSONObject, InterstitialSmashListener interstitialSmashListener);
|
|
|
|
boolean isInterstitialReady(JSONObject jSONObject);
|
|
|
|
void loadInterstitial(JSONObject jSONObject, JSONObject jSONObject2, InterstitialSmashListener interstitialSmashListener);
|
|
|
|
void loadInterstitialForBidding(JSONObject jSONObject, JSONObject jSONObject2, String str, InterstitialSmashListener interstitialSmashListener);
|
|
|
|
void showInterstitial(JSONObject jSONObject, InterstitialSmashListener interstitialSmashListener);
|
|
}
|