修复 android studio Firebase Ads Library 在更新后显示错误
Fix android studio Firebase Ads Library showing errors after update
更新以下 Firebase 广告库后
implementation 'com.google.android.gms:play-services-ads:20.1.0'
implementation 'com.google.firebase:firebase-ads:20.1.0'
我的 android studio 项目不断抛出这样的错误
cannot find symbol
import com.google.android.gms.ads.InterstitialAd;
Cannot resolve symbol 'InterstitialAd'
回到
就好了
implementation 'com.google.android.gms:play-services-ads:19.3.0'
implementation 'com.google.firebase:firebase-ads:19.4.0'
但是要在我的应用中实现一些功能和原生广告,我需要最新的 firebase 广告库。我该如何解决这个问题?
在版本 20 中 类 已更改。使用这个;
com.google.android.gms.ads.interstitial.InterstitialAd;
查看更多详情here
更新以下 Firebase 广告库后
implementation 'com.google.android.gms:play-services-ads:20.1.0'
implementation 'com.google.firebase:firebase-ads:20.1.0'
我的 android studio 项目不断抛出这样的错误
cannot find symbol
import com.google.android.gms.ads.InterstitialAd;
Cannot resolve symbol 'InterstitialAd'
回到
就好了implementation 'com.google.android.gms:play-services-ads:19.3.0'
implementation 'com.google.firebase:firebase-ads:19.4.0'
但是要在我的应用中实现一些功能和原生广告,我需要最新的 firebase 广告库。我该如何解决这个问题?
在版本 20 中 类 已更改。使用这个;
com.google.android.gms.ads.interstitial.InterstitialAd;
查看更多详情here