1. 程式人生 > >Android Studio升級到3.1出現的變化

Android Studio升級到3.1出現的變化

Android Studio3.1 AS3.1 升級AS到3.1 AS升級到3.1項目不能編譯

Configuration ‘compile‘ is obsolete and has been replaced with ‘implementation‘.It will be removed at the end of 2018`

在3.1中所有模塊的compile 對應字段都要替換成 implementation,如果不替換掉會在gradle的時候報錯,運行不上項目。(強制使用implementation, 不過報錯也不夠精準。需要你仔細觀察gradle的輸出)
如果你的項目使用多個依賴,而且依賴之間又有相互依賴,你想在主項目裏只依賴一個庫,那就需要在其他依賴庫裏使用api引用庫,這樣所引用的庫就可在當前module外使用了

Android Studio升級到3.1出現的變化