报错:Could not find bundletool.jar (com.android.tools.build:bundletool:0.1.0-alpha01.jar

原rootgradle:

buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.3.0'
    }
}

allprojects {
    repositories {
        jcenter()
        google()
    }
}

修改后:

buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.3.0'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

即就是将: google()  和 jcenter()换一下位置,在编译的时候优先选择Google,这是一种解决方法.

你可能感兴趣的:(Android)