此方法不会覆盖当前构建目标的任何内容,但会在 API 级别 11(当前目标为 1)中覆盖。
如何消除此错误?该应用程序编译并运行。我正在使用gradle:
android {
compileSdkVersion "android-L"
buildToolsVersion "19.1.0"
defaultConfig {
applicationId "com.codepath.apps.restclienttemplate"
minSdkVersion 14
targetSdkVersion "android-L"
}
....
}
根据<uses-sdk>
文档,如果minSdkVersion
不存在,则默认为 1,所以我认为 lint 不知道需要什么版本。