美文网首页
Freeline秒级编译

Freeline秒级编译

作者: ccDown | 来源:发表于2017-09-20 17:19 被阅读0次

    直接在Studio中安装插件Freeline Plugin 一键搞定是最快的,但是很大可能会安装失败不知道为啥,反正我是成功了,如果想要尝试繁琐的流程请看下边

    需要安装Python环境和java环境,请自行搜索教程

    1、项目gradle中添加

    dependencies {

    .........

    classpath'com.antfortune.freeline:gradle:0.8.7'

    // NOTE: Do not place your application dependencies here; they belong

    // in the individual module build.gradle files

    }

    2、APP gradle中添加

    apply plugin:'com.antfortune.freeline'

    android {

    .....

    freeline {

    hack true

    }

    }dependencies {

    .......

    debugCompile'com.antfortune.freeline:runtime:0.8.7'

    releaseCompile'com.antfortune.freeline:runtime-no-op:0.8.7'

    testCompile'com.antfortune.freeline:runtime-no-op:0.8.7'

    }

    3、Application中onCreate中添加

    FreelineCore.init(this);

    super.onCreate();

    4、当前工程下(CMD)执行

    gradlew initFreeline -Pmirror

    遇到的问题:Please declares your JAVA_HOME to system env!

    1、没有配置JAVA_HOME

    2、freeline_project_description.json 中的java_home配置错误

    其他可能会遇到的问题可以在https://github.com/alibaba/freeline/issues?page=3&q=is%3Aissue+is%3Aopen  上边找找,或许会遇到

    相关文章

      网友评论

          本文标题:Freeline秒级编译

          本文链接:https://www.haomeiwen.com/subject/pfbosxtx.html