Android L上片段的Lint错误:“此方法不会覆盖任何内容”

前端之家收集整理的这篇文章主要介绍了Android L上片段的Lint错误:“此方法不会覆盖任何内容”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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"
原文链接:https://www.f2er.com/android/318374.html

猜你在找的Android相关文章