我正在尝试使用Google AdMob来显示InterstitialAd,但我的Google服务存在问题。在设备上运行我的应用后,我收到以下消息:
找不到Google Play服务资源。检查你的项目 配置以确保包含资源。
这是我的代码:
interstitial = new InterstitialAd(getActivity());
interstitial.setAdUnitId("id");
AdRequest adRequest = new AdRequest.Builder().build();
interstitial.loadAd(adRequest);
@Override
public void onResume(){
super.onResume();
if (interstitial.isLoaded()) {
interstitial.show();
}
}
可能有什么问题?谢谢!