美文网首页
gradle-4.4的坑 WARNING: Configurat

gradle-4.4的坑 WARNING: Configurat

作者: 雨邪 | 来源:发表于2018-05-05 22:41 被阅读0次

    WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.

    同步第三方架包 如: compile 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.22'(不怕编译警告,使用这个)

    建议用: implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.22'(真实情况,使用这个同步会失败)

    或 api 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.22'(有强迫症,建议用这个)

    相关文章

      网友评论

          本文标题:gradle-4.4的坑 WARNING: Configurat

          本文链接:https://www.haomeiwen.com/subject/ejxyrftx.html