implementation compileOnly和api
implementation和api
implementation
和api
是取代之前的compile的,其中api
和compile
是一样的效果,implementation
有所不同,通过implementation
依赖的库只能自己库本身访问,举个例子,A依赖B,B依赖C,如果B依赖C是使用的implementation
依赖,那么在A中是访问不到C中的方法的,如果需要访问,请使用api
依赖
compile only
compile only
和provided
效果是一样的,只在编译的时候有效, 不参与打包
runtime only
runtimeOnly
和 apk
效果一样,只在打包的时候有效,编译不参与
跟编译环境相关
- test implementation
testImplementation
和testCompile
效果一样,在单元测试和打包测试apk的时候有效
- debug implementation
debugImplementation
和debugCompile
效果相同, 在debug
模式下有效
- release implementation
releaseImplementation
和releaseCompile
效果相同,只在release
模式和打包release包情况下有效
implementation compileOnly和api
https://denchopen.github.io/blog/2020/08/27/Implementation和api/