Hi, when I have sub projects in gradle the auto generated IDE module name is of the form "parent/child" is there any way to configure this to be just "child" from either gradle configuration or IDE configuration?
g
gaetan
09/04/2017, 8:42 AM
It’s more a #gradle question but I think you can define that in the settings.gradle file:
Copy code
include 'qix'
project(":qix").projectDir = file("foo/bar")