请帮助解决此错误,因为这是我的第一个Android项目! Gradle Sync: pply插件:' com.android.application'
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.+'
}
在Gradle控制台上,我得到: FAILURE:构建因异常而失败。
出了什么问题: 配置项目':app'。
时出现问题无法解析配置':app:_debugCompile'的所有依赖项。 找不到与com.android.support:appcompat-v7:8.0.+匹配的任何版本。 不匹配的版本: 24.0.0-α1 23.2.1 23.2.0 23.1.1 23.1.0 + 14以上 在以下位置搜索: https://jcenter.bintray.com/com/android/support/appcompat-v7/maven-metadata.xml https://jcenter.bintray.com/com/android/support/appcompat-v7/ 文件:/ d:/Users/INTERCEPTOR/AppData/Local/Android/sdk/extras/android/m2repository/com/android/support/appcompat-v7/maven-metadata.xml 文件:/ d:/Users/INTERCEPTOR/AppData/Local/Android/sdk/extras/google/m2repository/com/android/support/appcompat-v7/maven-metadata.xml 文件:/ d:/用户/拦截器/应用程序数据/本地/安卓/ SDK /演员/谷歌/ m2repository / COM /安卓/支持/程序兼容性-V7 / 要求: 所有MyApplication:应用程序:未指定的
尝试: 使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获得更多日志输出。
建立失败
答案 0 :(得分:4)
您应该为appcompat-v7
依赖项使用正确的版本。
上述依赖关系到现在的最新稳定版本是:
compile 'com.android.support:appcompat-v7:23.2.1'
如上所述使用它,并确保您之前在 SDK Manager 中安装/更新到最新版本。