Settings.include() syntax/usage?
I am trying to create a build hierarchy that is not a single massive build.gradle We have a series of stand alone sample applications contained in a subdirectory (ie . /samples), and I would like to specify the app list only in that subdirectory. I have working a single directory level, specifying the list of sub projects in a settings.gradle include list. What I want to do now is to reference all of that from a parent directory (my top level).
In effect at my top, I want to include āeverything defined in the sample apps dirā. I have worked my way through the samples without stumbling over something that works to build my āgrandchildā apps from the top level.
I thought that I should be able to use:
Settings.include([āsamplesā]) but that gives me an error indicating I am missing the obvious constructor understanding.
Any suggestions on this issue ?