gradle3.x 和 2.x 的依赖关键字

新旧对比

gradle3.x 与 2.x 的依赖方式有了很大区别,具体来说,有了下面这样的改动

3.x2.x
implementation
apicompile
compileOnlyprovided
runtimeOnlyapk
debugImplementationdebugCompile
releaseImplementationreleaseCompile
androidTestImplementationandroidTestCompile
区别和使用
implementation 和 api

implementation 和 api 是取代之前的 compile 的,其中 api 和 compile 是一样的效果。implementation 有所不同,通过 implementation 依赖的库只能自己库本身访问,举个例子,A依赖B,B依赖C,如果B依赖C是使用的 implementation 依赖,那么在A中是访问不到C中的方法的,如果需要访问,需要使用api依赖。

compileOnly

compileOnly 和 provided 效果是一样的,只在编译的时候有效, 不参与打包。

runtimeOnly

runtimeOnly 和 apk效果一样,只在打包的时候有效,编译不参与

test implementation

testImplementation 和 testCompile 效果一样,在单元测试和打包测试 apk 的时候有效

debug implementation

debugImplementation 和 debugCompile 效果相同, 在 debug 模式下有效

release implementation

releaseImplementation 和 releaseCompile 效果相同,只在 release 模式和打 release 包情况下有效

参考资料
  1. gradle 新的依赖方式 implementation、api、compileOnly
  2. gradle3.x和2.x的依赖关键字
  3. The Java Library Plugin
  4. 迁移到 Android Plugin for Gradle 3.0.0
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值