1. 程式人生 > >專案中依賴module中的jar包注意點

專案中依賴module中的jar包注意點

1,為了方便開發我們常會將一些常用且通用的類或者jar整合在module中方便以後的專案隨時呼叫。

但是自從Android studio更新到3.0.0之後將complie改成api和implement後需要注意一點,如果module中的jar需要給主專案使用則需要使用api:“xxxxx”,因為api是可以共整個專案使用的,而implement依賴的jar包只能給當前module使用。

正確的樣子:

api files('libs/alipaySdk-20180601.jar')