https://kotlinlang.org logo
#gradle
Title
g

ghedeon

04/11/2018, 11:59 AM
what's the right way of connecting external module, in case I want to link a module from a different project? I'm quite satisfied with this:
Copy code
include ':commons'
project(':commons').projectDir = new File(settingsDir, "../commons-android/commons")
but that means that all the project specific configuration from
commons-android
becomes invalid, because we import the module, and not the whole project