花了整整一上午时间终于找到了解决办法。
如果是“Could not find support-v4.aar”的错误,也可以试试这个方案。
解决方案:找到项目的build.gradle文件,在buildscript里的repositories里新建一条
maven { url 'https://maven.google.com' }
确保它位于 jcenter()的上方!!,之后重新build项目就可以了。
举例:
buildscript {
ext.kotlin_version = '1.2.41'
repositories {
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
}
}
allprojects {
repositories {
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}