我必须将Inmobi skd集成到我的项目中我已经完成了这个https://www.inmobi.com/support/integration/23817448/22051163/android-sdk-integration-guide/教程,当我提到 到androidmenidfest.xml文件,它给出一个错误没有找到与给定名称匹配的资源(在'值'值为' @ integer / GOOGLE_PLAY_SERVICES_VERSION'。)
要解决此问题,我已经参考了这个I'm getting "Error: No resource found that matches the given name (at value with value @integer/google_play_services_version)"教程,但它并没有帮助我.. 请帮帮我,我是android的新手.. 提前致谢
答案 0 :(得分:23)
正如Simple Plan所说:
在Eclipse中:
Eclipse - >导入 - >现有的Android代码 - >浏览 - >导航到google-play-services_lib文件夹(android-sdk / extras / google / google_play_services / libproject)。
然后,选择您的项目 - >右键单击 - >属性 - > android - >库,添加 - >选择刚刚导入的项目 - >行
<强>更新强>
在Android Studio中:
只需将此行添加到build.gradle
,然后点击同步
compile&#39; com.google.android.gms:play-services:8.4.0&#39;
并且还要确保在build.gradle的末尾添加这一行(我不知道为什么把它放在最后(而不是在开头)解决了错误。)
应用插件:&#39; com.google.gms.google-services&#39;
有关详细信息,请参阅this链接