1. 程式人生 > >Android implementation 、compile、api區別

Android implementation 、compile、api區別

compile與api無區別
compile與api 編譯的依賴作用於當前的整個專案

implementation編譯的依賴只作用於當前的module:
例如:專案裡有 A,B,C三個 moudule,在 A mondule 中使用 implementation 新增的依賴只作用於 A mondule,在 B,C中無法訪問;
如果 在 A moudle 中使用 compile或api 新增依賴,則在 B,C中也可以使用