1. 程式人生 > >Warning:Configuration 'compile' is obsolete and has been replaced with 'implementation'. It will be

Warning:Configuration 'compile' is obsolete and has been replaced with 'implementation'. It will be

Warning:Configuration'compile'is obsolete and has been replaced with'implementation'.It will be removed at the end of 2018
筆記小計,compile會被在2018年底取消,會被api替代,所以會報這個警告,解決警告的方式就是換成api就好了。
關於compile與implementation的區別。
compile:

               可以傳遞依賴引用,編譯時間相對來說長久一些

implementation:

               不可傳遞依賴引用,比如,B依賴A,C再依賴B,C卻不能依賴A的引用或者依賴。當然他的編譯時間就會短一些。

   對於api代替compile,他們功能相同。