问题描述
已将 com.google.android.gms:play-services-ads:19.4.0 更新为 20.1.0,但仍然没有删除一些已弃用的方法。参考https://developers.google.com/android/reference/com/google/android/gms/ads/mediation/customevent/CustomEventListener#onAdFailedToLoad(com.google.android.gms.ads.AdError)
error: <anonymous my_app_adapter_file> is not abstract and does not override abstract method onAdFailedToLoad(int) in CustomEventListener
customEventListener = new CustomEventBannerListener() {
//Deprecated still the CustomEventBannerListener expecting the int in onAdFailedToLoad
@Override
public void onAdFailedToLoad(int i) {
}
//latest
@Override
public void onAdFailedToLoad(AdError adError) {
return;
}
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)