gradle 获取资源默认输出目录
gradle get resources default output directory
Gradle: 如何获取默认资源输出目录?
println sourceSets.main.resources.outputDir
错误:
Needs to set a non-null value before it can be retrieved
试试这个:
println sourceSets.main.output.resourcesDir
对于科特林 DSL:
sourceSets.main.get().output.resourcesDir
Gradle: 如何获取默认资源输出目录?
println sourceSets.main.resources.outputDir
错误:
Needs to set a non-null value before it can be retrieved
试试这个:
println sourceSets.main.output.resourcesDir
对于科特林 DSL:
sourceSets.main.get().output.resourcesDir