打包android时编译时老是报错,求大神指点

编译模式:release
使用 Android Studio 工程:F:\CocosCreatortest\qmysddvivo\build\jsb-link\frameworks\runtime-src\proj.android-studio
在 Android SDK 中未找到文件夹 ‘android-10’。

下载个android-10放SDK里 或者设置有的…

android -10好像SDK里面没有吧

在androidstudio中下载之后就报

这个错误

不知道 可以检查下build.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {

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

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

}
allprojects {
repositories {
google()
jcenter()
flatDir {
dirs ‘libs’
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}

android {
compileSdkVersion 10
buildToolsVersion ‘28.0.3’
}
dependencies {
}
这是build。gradle里面的东西,没看懂啥意思