Android Studio minSdkVersion和targetSdkVersion警告

Blu*_*ift 8 android gradle android-studio build.gradle

在我拥有的Android项目中,我在build.gradle文件中有这个部分:

android {
    compileSdkVersion 19
    buildToolsVersion "19.0.3"

    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 19;
    }
}
Run Code Online (Sandbox Code Playgroud)

在'minSdkVersion'和'targetSdkVersion'属性中,有警告:

'minSdkVersion' cannot be applied to '(java.lang.Integer)'

'targetSdkVersion' cannot be applied to '(java.lang.Integer)`
Run Code Online (Sandbox Code Playgroud)

这是一个错误,还是其他什么?

Sco*_*rta 8

这是一个错误,但我没有错误编号.build.gradle文件的语法检查不完整,此警告是虚假的.请忽略它.