我安装了android studio 3.1.1版,当android studio开始与gradle同步时,我遇到了一些错误和错误:
无法解析':app @ debug / compileClasspath'的依赖关系:无法解析com.android.support:appcompat-v7:27.1.1。 打开文件 显示详细信息
无法解析':app @ debugAndroidTest / compileClasspath'的依赖关系:无法解析com.android.support.test:runner:1.0.1。 打开文件 显示详细信息
无法解析':app @ debugAndroidTest / compileClasspath'的依赖关系:无法解析com.android.support.test.espresso:espresso-core:3.0.1。 打开文件 显示详细信息
无法解析':app @ debugAndroidTest / compileClasspath'的依赖关系:无法解析com.android.support:appcompat-v7:27.1.1。 打开文件 显示详细信息
无法解决:com.android.support:appcompat-v7:27.1.1 在文件中显示 在“项目结构”对话框中显示
我的build.gradle是:
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.example.hadi.myapplication"
minSdkVersion 15
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
请帮我解决错误。 感谢。
答案 0 :(得分:0)
将com.android.support:appcompat-v7:27.1.1
替换为compile 'com.android.support:appcompat-v7:25.+'