We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
InterstitialAd.load(this, - mInterstitialAd?.show(this,)
Hello, I updated the sdk, but it keeps giving an error in the "this" part. How can I solve it?
private var mInterstitialAd: InterstitialAd? = null fun loadInterstitialAd(applicationContext: Context?) { var adRequest = AdRequest.Builder().build() InterstitialAd.load(this,"ca-app-pub-3940256099942544/1033173712", adRequest, object : InterstitialAdLoadCallback() { override fun onAdFailedToLoad(adError: LoadAdError) { mInterstitialAd = null } override fun onAdLoaded(interstitialAd: InterstitialAd) { mInterstitialAd = interstitialAd } }) if (mInterstitialAd != null) { mInterstitialAd?.show(this,) } else { Log.d("TA ```G", "The interstitial ad wasn't ready yet.") }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
InterstitialAd.load(this, - mInterstitialAd?.show(this,)
Hello, I updated the sdk, but it keeps giving an error in the "this" part. How can I solve it?
The text was updated successfully, but these errors were encountered: