This method is not overriding anything with the current build target,
but will in API level 11 (current target is 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不知道需要什么版本.
解决方法
试试这个,为我工作:
>从这里下载android-21 sdk:
https://mega.co.nz/#!klwQWQ6Z!seD3n0x9dkTyR29c7HxNE6XkHXtmpjfcbYrfntVOXmY
>在你的sdk路径中解压缩它
>在您的gradle构建文件中更改此项
compileSdkVersion“android-L”
buildToolsVersion“19.1.0”
至
compileSdkVersion 21 buildToolsVersion "20.0.0"