Steven
04/16/2019, 4:03 PMval iOSMain by sourceSets.creating
h0tk3y
04/16/2019, 4:39 PMval iOSMain by sourceSets.creating
is just getting the source set by name. So you can translate it to:
def iOSMain = sourceSets.iOSMain
Steven
04/16/2019, 4:53 PMh0tk3y
04/16/2019, 4:54 PMdef iOSMain = sourceSets.create('iOSMain')
Steven
04/16/2019, 5:19 PM