savrov
05/10/2020, 4:38 PM:config
has a dependency on :utils
and buring build phase this dependency fails on Cannot choose between the following variants of project :utils:....
.
I think that the reason is in defining targets in build.gradle
files (every module have the same):
jvm('backend')
jvm('android')
So compiler does not know what to do. Neither me. =( If you have some thoughts or ideas how to solve this, please share, thank youUgi
05/10/2020, 5:24 PMjvm('backend')
infrastructure
project, where you want to use android specific stuff, you would use something like:
jvm()
android()
savrov
05/10/2020, 6:30 PM