android – 无法为Google应用邀请构建项目

前端之家收集整理的这篇文章主要介绍了android – 无法为Google应用邀请构建项目前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试这个谷歌应用程序邀请的东西,但我不能让它工作.

我按照https://developers.google.com/app-invites/android/guides/app建议的步骤进行了操作,但我很快就遇到了没有找到’com.google.gms:google-services:1.0’的问题,所以我跟着Error: Could not find com.google.gms:google-services:1.0. when adding google service plugin in build.gradle in android studio并且gradle继续构建但是后来我输入了这个错误

我按照这个答案:Android Studio: failed to complete gradle execution,cause is empty甚至尝试使用选项-Xmx512m,但问题仍然存在…任何有类似问题的人试图建立应用程序邀请他们的应用程序,甚至无法建立项目?

编辑:我没有设法解决问题,但我确实设法让应用程序邀请工作.我不需要从App Invites google指南中执行以下步骤:

Add the dependency to your project’s top-level build.gradle: classpath
‘com.google.gms:google-services:1.3.0-beta1’ Add the plugin to your
app-level build.gradle: apply plugin: ‘com.google.gms.google-services’

像这样,gradle将无法完成,因为我只需要将google play服务依赖项添加到app level build.gradle文件中.

解决方法

我已经通过不包括整个播放服务解决了这个问题.代替:

compile ‘com.google.android.gms:play-services:7.5.+’

输入这个:

compile ‘com.google.android.gms:play-services-appinvite:7.5.+’

顺便说一句,你说你没有使用谷歌服务插件解决了你的问题.你检查过你能发送邀请吗?如果插件没有加载配置文件,它是如何工作的?

原文链接:https://www.f2er.com/android/318460.html

猜你在找的Android相关文章