studio3.0集成freeline和解决不能增量更新bug和报错

1.studio的plugins搜索freeline安装插件

2.在project的build.gradle 文件中添加Freeline的依赖

classpath 'com.antfortune.freeline:gradle:0.8.8'//github最新版本

3.在项目的主module的build.gradle中,应用Freeline插件的依赖
apply plugin: 'com.antfortune.freeline'

4.下载:
gradlew initFreeline -Pmirror// 线上下载

将freeline.zip压缩包放在项目根目录下,命令行gradlew initfreeline -PfreelineLocal="/freeline.zip"// 本地安装

5.点击插件按钮运行或命令行
*python freeline.py// 增量
*python freeline.py -f// 全量
*python freeline.py -d// 调试

6.解决增量更新不生效和运行报错坑
*android {
freeline {
hack true
productFlavor "pp_debug"
}
}

*项目主application中:FreelineCore.init(getApplication());

使用api依赖三方库

你可能感兴趣的:(studio3.0集成freeline和解决不能增量更新bug和报错)