flutter混合开发踩坑日记(flutter/profile/libs.jar (No such file or directory) )

在学习flutter混合开发时,准备打release包,结果弹出了.android/Flutter/build/intermediates/flutter/profile/libs.jar (No such file or directory) 这个问题,导致打包失败,前往flutter模块对应的文件路径的确没有这个类。经过一顿操作猛如虎,在百度找到了方法: 

        1.找不到profile/libs.jar,需要先在flutter模块执行flutter run --profile 命令,就出现对应了profile/文件,就可以release打包操作;

        2.或者找不到 debug/lib.jar ,执行 flutter run 命令,就出现debug 文件了。(暂时我没碰到,也许某一天也会踩到)。

出现原因:Gradle 以及Gradle 插件更新引起的。

github上的issue:Here is the workaround by Jwiggiff on the github page.

(侵删)

你可能感兴趣的:(flutter混合开发踩坑日记(flutter/profile/libs.jar (No such file or directory) ))