13

Gradle:如何获取默认资源输出目录?

println sourceSets.main.resources.outputDir

错误:

Needs to set a non-null value before it can be retrieved
4

2 回答 2

22

尝试这个 :

println sourceSets.main.output.resourcesDir

资源

于 2017-06-27T21:05:53.260 回答
1

对于 kotlin DSL:

sourceSets.main.get().output.resourcesDir
于 2021-12-28T12:40:55.610 回答