GarouDan
01/30/2019, 11:52 PMimplementation project(':common')
If I put at least one preset / target it seems to work, but without any preset / target it isn’t working.
Do you know if we can change our build.gradle
to achieve this result?hmole
01/31/2019, 8:00 AMnestserau
01/31/2019, 8:04 AMribesg
01/31/2019, 8:43 AMGarouDan
01/31/2019, 11:04 AMribesg
01/31/2019, 11:07 AMsrc
folderdependsOn
GarouDan
01/31/2019, 11:09 AMribesg
01/31/2019, 11:10 AMGarouDan
01/31/2019, 11:13 AMcommon
and the other one living in the folder android
(where we could have some other ones on different folders, but I simplifying here for brevity). Do you think that is possible to use the common
project inside the android
project (maybe using something like implementation project(':common')
) without defining any presets in the common
project?nestserau
01/31/2019, 11:32 AMcommon
to be able to be consumed by android
, you need a jvm
or android
target in common
.GarouDan
01/31/2019, 11:37 AM