android studio 把主模块( app )打成 jar 包,但是运行的时候报 java.lang.NoClassDefFoundError 原因是因为主模块引用子模块中的类,但是打 jar 包的时候,jar 没有把子模块包含进去,请问该怎么解决?
以下是 app 模块的 build.gradle
dependencies { //包含的子模块 implementation project(':autojs') implementation project(':common') implementation project(':automator') }
task makeJar(type: Copy) {
def jarName = "testJar"
//删除存在的
delete 'build/libs/' + jarName + ".jar"
//设置拷贝的文件
from("build/intermediates/aar_main_jar/commonDebug")
//打进 jar 包后的文件目录,将 classes.jar 放入 build/libs/目录下
into('build/libs/')
//要打包的 jar 文件
include('classes.jar')
//重命名
rename('classes.jar', jarName + ".jar")
} makeJar.dependsOn(build)
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.