This message was deleted.
# android
s
This message was deleted.
a
Found the solution, you need to include it as normal (
include ':module'
) and then define the path with
project(':module').projectDir = file('../module')
e
a likely better idea is
includeBuild('..')
instead of pulling individual modules from the parent project
then treat the parent modules as binary modules (just like any external projects would), they'll just happen to be compiled from source in the parent directory instead of being pulled from an external repository
a
Thanks for the suggestion, what would that look like?
like what does the app module code look like?