5

我尝试在 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

有什么建议么?

4

3 回答 3

23

这是一个已知的问题。希望它会在接下来的几天里得到解决。

  • 打开 Android SDK 管理器
  • 转到菜单工具->管理附加站点并将此 URL 添加到用户定义的站点:https ://dl-ssl.google.com/android/repository/addon-play-services-5.xml (注意:菜单是 SDK 管理器的菜单,不是 Android Studio)
  • 重新加载 Google Play 服务并将其更新到新版本。

现在 gradle 应该能够解决依赖关系并下载缺少的模块,并且编译应该完成。

于 2014-06-27T22:34:33.230 回答
3

如果所有这些都不适合您,请查看https://code.google.com/p/android/issues/detail?id=72454上的说明 对我来说,我只是缺少附加部分中的 Google 存储库在 SDK 管理器中。

在https://dl-ssl.google.com/android/repository/addon-play-services-5.xml添加 repo,然后确保您已安装 Google Repository。它应该在 sdk manager 的 extras 部分可用

于 2014-09-18T04:25:10.997 回答
0

我最近在 Ubuntu 14.10 中安装 AndroidStudio 0.8.9 后遇到了同样的问题。解决方案是转到 SDK Manager 并安装 Google Play Services 和 Google Repository。它们似乎没有默认安装。

于 2014-10-27T23:37:26.740 回答