是否可以在Gradle Android项目中将所有依赖项收集到一个地方作为jar文件?
我尝试使用:Gradle: collect application dependencies
但是Gradle返回错误:
Could not find property 'testRuntime' on configuration container.
答案 0 :(得分:3)
testRuntime是一个似乎在您的项目中不可用的配置。要收集单个文件夹中的所有配置,您可以执行以下操作:
task collectJars(type: Copy){
into "$buildDir/output/lib"
configurations.all{ config ->
from config
}
}