2016-03-12 88 views
3

请谅解这个错误,因为这是我的第一个android项目! 摇篮同步: pply插件: 'com.android.application'错误:(24,11)无法解决:com.android.support:appcompat-v7:8.0.+

android { 
    compileSdkVersion 8 
    buildToolsVersion "23.0.2" 

    defaultConfig { 
     applicationId "com.example.interceptor.myapplication" 
     minSdkVersion 5 
     targetSdkVersion 8 
     versionCode 1 
     versionName "1.0" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    testCompile 'junit:junit:4.12' 
    compile 'com.android.support:appcompat-v7:8.0.+' 

} 

在摇篮控制台我得到: 失败:建立失败,一个例外。

  • 出错了: 配置项目':app'时发生问题。

    Could not resolve all dependencies for configuration ':app:_debugCompile'. Could not find any version that matches com.android.support:appcompat-v7:8.0.+. Versions that do not match: 24.0.0-alpha1 23.2.1 23.2.0 23.1.1 23.1.0 + 14 more Searched in the following locations: https://jcenter.bintray.com/com/android/support/appcompat-v7/maven-metadata.xml https://jcenter.bintray.com/com/android/support/appcompat-v7/ file:/D:/Users/INTERCEPTOR/AppData/Local/Android/sdk/extras/android/m2repository/com/android/support/appcompat-v7/maven-metadata.xml file:/D:/Users/INTERCEPTOR/AppData/Local/Android/sdk/extras/google/m2repository/com/android/support/appcompat-v7/maven-metadata.xml file:/D:/Users/INTERCEPTOR/AppData/Local/Android/sdk/extras/google/m2repository/com/android/support/appcompat-v7/ Required by: MyApplication:app:unspecified

  • 尝试: 与--stacktrace选项获取堆栈跟踪运行。使用--info或--debug选项运行以获取更多日志输出。

构建失败

回答

6

你应该使用正确的版本为appcompat-v7依赖。

上述依赖的最新稳定版本到现在是:

compile 'com.android.support:appcompat-v7:23.2.1' 

使用它作为以上,并确保你安装/升级到最新版本之前SDK管理器

+0

编译版本是在我开始项目时默认建立的!我正在尝试为android 2.2 +创建一个android应用程序(如果它很重要)...但仍然感谢您的解决方案! –

+3

无法安装23.2.1。 Studio包管理器说它已经下载,但是Gradle说'未能解决' –

+0

@konopko如果你告诉我们有关错误的信息不仅仅是'无法解决',可能会有帮助。 –