Android Design支持库无法编译

时间:2018-08-02 04:46:20

标签: android compilation implementation

https://gist.github.com/koraytem/89338cddbd50442164aeb555393a0d09个人是我的gradle页面的链接。当我添加android设计支持库编译时,它给了我这个错误

  

配置'compile'已过时,已被替换为   “实现”和“ api”。它将在2018年底删除。   更多信息请参见:   http://d.android.com/r/tools/update-dependency-configurations.html`。   感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

从Gradle插件3.0.0开始,引入了新的配置依赖项。有关更多信息,请在此official link上选中使用新的依赖项配置

您会在警告消息中看到,compile已过时,需要使用implementation。因此需要进行以下更改:

当前为:

compile 'com.android.support:design:27.1.1'

更改为:

implementation 'com.android.support:design:27.1.1'