我尝试在Android Studio中创建一个Android Wear项目。它似乎无法构建gradle文件,我得到的所有内容如下:
Error:A problem occurred configuring project ':wear'.
> Could not resolve all dependencies for configuration ':wear:_debugCompile'.
> Could not find any version that matches com.google.android.support:wearable:+.
Required by:
Browser:wear:unspecified
> Could not find any version that matches com.google.android.gms:play-services-wearable:+.
Required by:
Browser:wear:unspecified
有什么建议吗?
这是一个已知问题。希望在接下来的几天能解决。
- 打开Android SDK管理器
- 转到菜单工具->管理附加站点并将此url添加到用户定义的站点:https://dl-ssl.google.com/android/repository/addon-play-services-5.xml(注意:该菜单是SDK管理器的菜单,而不是Android Studio)
- 重新加载并更新Google Play服务到新版本。
现在gradle应该能够解决依赖并下载缺失的模块,编译应该完成了。
如果所有这些都不适合您,请查看https://code.google.com/p/android/issues/detail?id=72454上的说明对我来说,我只是在sdk管理器的额外部分中缺少了Google Repository。
在https://dl-ssl.google.com/android/repository/addon-play-services-5.xml上添加repo,然后确保您已经安装了Google Repository。它应该在sdk管理器
我最近在Ubuntu 14.10上安装了AndroidStudio 0.8.9之后也遇到了同样的问题。解决方法是进入SDK管理器并安装Google Play Services和Google Repository。它们似乎不是默认安装的。