我用maven构建一个项目,我想为Google Play服务添加一个依赖项。我的Gradle构建文件有
compile 'com.google.android.gms:play-services-wearable:+'
并在我的pom.xml“依赖”下面放
<dependency>
<groupId>com.google.android.gms</groupId>
<artifactId>google-play-services</artifactId>
<version>5</version>
<type>aar</type>
</dependency>
但是maven一直在抱怨“找不到神器”。 如何指定Google Play服务的依赖性?
答案 0 :(得分:1)
来自Google-Developers:
在6.5之前的Google Play服务版本中,您必须将整个API包编译到您的应用中。在某些情况下,这样做会使您的应用程序中的方法数量(包括框架API,库方法和您自己的代码)更难以保持65,536的限制。
从版本6.5开始,您可以选择性地编译Google Play 将API应用到您的应用中。
所以,试着替换&#34;版本&#34;在你的pom.xml到6.5或以上