如何在Android Studio中正确安装support-v7 repo

时间:2014-11-20 20:23:35

标签: android android-studio

目前我的依赖关系看起来像:

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile files('libs/volley_1_0_8.jar')
compile 'com.android.support:support-v4:21.0.2'
compile 'com.android.support:support-v7:21.0.2'
compile files('libs/volley.jar')
compile files('libs/picasso-2.4.0.jar')
}

这给了我以下错误:

  Error:Failed to find: com.android.support:support-v4:21.0.2
  Install Repository and sync project
  Open File
  Open in Project Structure dialog

看起来我在SDK中有所需的一切:

enter image description here

单击“安装存储库和同步项目”会提示我安装支持repo rev 9(根据SDK管理器,我已经安装了支持服务器)? 安装时我总是收到错误

 Failed to rename directory C:\Program Files (x86)\Android\android-studio\sdk\extras\android\m2repository to C:\Program Files (x86)\Android\android-studio\sdk\temp\ExtraPackage.old01.

Android Studio本身似乎正在使用该目录。

问题:如何安装v7支持?

1 个答案:

答案 0 :(得分:1)

support-v4的当前版本为21.0.0。没有support-v7这样的库 - 如果你的意思是appcompat-v7,那么根据gradleplease.appspot.com也是21.0.0,这是各种库的最新版本的方便参考

SDK Manager的版本为21.0.2的原因是因为版本21.0.0的初始版本以来支持库的其他部分(特别是Multidex support library)已更改,但是没有更改support-v4或其他部分。