2.3.2 -》3.0.1 Gradle版本为4.1 com.android.tools.build:gradle:3.0.x
- Android Monitor 被换成了 Android Profile ;
- 新建项目需要在gradle.properties中配置 android.enableAapt2=false 才能编译通过;
- compile 不推荐使用,Google推荐使用新出的implement和api;
- api :完全等同于compile指令,没区别,你将所有的compile改成api,完全没有错。
- implement:这个指令的特点就是,对于使用了该命令编译的依赖,对该项目有依赖的项目将无法访问到使用该命令编译的依赖中的任何程序,也就是将该依赖隐藏在内部,而不对外部公开。
- 建议:在Google IO 相关话题的中提到了一个建议,就是依赖首先应该设置为implement的,如果没有错,那就用implement,如果有错,那么使用api指令,这样会使编译速度有所增快。
compile fileTree(dir: 'libs', include: ['*.jar'])
但在3.0后的写法为
implementation fileTree(dir: 'libs', include: ['*.jar'])或api fileTree(dir: 'libs', include: ['*.jar'])
3.0.1-》3.1.2 Gradle版本为4.4 com.android.tools.build:gradle:3.1.x
- compile 已不能使用;
- android.enableAapt2=false 不能使用,需要配置成 true ,文档提示 会在2018年底 彻底删除该设置;
- 不要用内置的JDK,用自己的;