这是否意味着如果我提交了我的应用程序,admob将在提交后工作正常?如果没有,这里是我的admob代码,我如何修复这个问题?
private AdView adView;
adView = new AdView(this);
adView.setAdSize(AdSize.BANNER);
adView.setAdUnitId("My App Ad Unit ID");
// Add the AdView to the view hierarchy. The view will have no size
// until the ad is loaded.
LinearLayout layout = (LinearLayout) findViewById(R.id.adViewLayout);
layout.addView(adView);
// Create an ad request. Check logcat output for the hashed device ID to
// get test ads on a physical device.
AdRequest adRequest = new AdRequest.Builder()
// .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
// .addTestDevice("52EEC3DAD2FA75F22B44407D19072632")
.build();
// Start loading the ad in the background.
adView.loadAd(adRequest);
XML:
<LinearLayout
android:id="@+id/adViewLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:orientation="vertical" >
</LinearLayout>
这是谷歌的人对此说的话
我一直得到错误‘谷歌播放服务资源找不到。检查您的项目配置,以确保包括资源。‘
您可以安全地忽略此消息。您的应用程序仍将获取和服务横幅广告。
到目前为止,我认为这些是所有情况下的共同事实: 2017年6月初开始。查看更多最近的报道,在评论到顶部的答案:LogCat消息:谷歌Play服务资源没有找到。检查您的项目配置,以确保包含资源 Android 6.0设备 也许:Google Play Services 11.0.55(436-156917137) Samusng Galaxy S5 Nexus 7(2013) 这个时候有什么工作吗?
每当我尝试运行Google Map API v2项目时,它会显示以下错误:“Google Play services resources was not found.检查您的项目配置以确保包含了这些资源。”实际上,我试图添加一个标记到一个特定的位置,每当点击一个列表项,但我没有看到任何标记,相反,我得到应用停止工作的消息在设备。然后我检查了sdk管理器,有一个可用于Google Play服务的更新
我冬眠了。cfg。项目根文件夹中的xml文件。 如果我运行的应用程序包含: 它在方法中崩溃,并显示以下消息: 无法找到cfg.xml资源[hibernate.cfg.xml] 输出:
我试图在一个应用程序中添加admob横幅。我下载了Eclipse和SDK的所有更新。 添加Google Play服务库项目我也忘了 这是xml代码 我认为问题出在xml中,因为有一个类无法实例化:但是尽管有这些问题,应用程序仍然工作
编译sdk版本为22,构建工具版本为23.0.2。 推送通知库-https://github.com/facebook/fbnotifications 我知道如果我将编译sdk版本更改为23,这个错误就会消失。但是在我的项目中,我使用了一些在23版上不推荐的方法,目前不可能将compile sdk版本更改为23版。 还有其他方法可以消除这个错误吗