AndroidStudio 3.0升级之compileimplementation简要说明

Posted 安卓笔记侠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AndroidStudio 3.0升级之compileimplementation简要说明相关的知识,希望对你有一定的参考价值。

1.现象

androidStudio 升级至3.0后 之前引用库所使用的complie默认变成implementation
如以下:
    3.0之前
    compile ‘io.reactivex.rxjava2:rxandroid:2.0.1‘
    compile ‘io.reactivex.rxjava2:rxjava:2.1.3‘

    3.0之后
    implementation ‘io.reactivex.rxjava2:rxandroid:2.0.1‘
    implementation ‘io.reactivex.rxjava2:rxjava:2.1.3‘
除以上之外,还有以下:

 androidTestCompile(前)  
 androidTestImplementation(后)  


 testCompile(前)
 testImplementation (后)

截图所示:

技术分享图片

以上两指令说明

compile: 如有模块之间存在依赖的话,引用是正常的。
implementation: 引用的库只能在当前模块中使用,即便模块之间存在依赖关系的话,也不可以引用。

说到以上,举一个不是很恰当的例子,有点像:Java中 public 与 private

 

以上是关于AndroidStudio 3.0升级之compileimplementation简要说明的主要内容,如果未能解决你的问题,请参考以下文章

Kotlin编程之AndroidStudio(包括3.0与2.x版本)配置与使用

Gradle plugin 3.0 & Android Studio 3.0

android studio升级3.0版本,问题处理

关于AndroidStudio3.0 升级你可能遇到的事

Android Studio 升级到3.0 提示 java.lang.NoClassDefFoundError

升级Android Studio 3.0 时卡在Building 或者refresh