I have a gradle metadata issue. Say I have a multi...
# multiplatform
d
I have a gradle metadata issue. Say I have a multiplatform project, with two targets of the same platform, like
linuxX64("linux")
and
linuxX64("linuxWithStaticLib")
. This creates an ambiguity when consuming this project as a library. I'm aware that one can use attributes to disambiguate them but they have to be explicitly specified. Is there a way to have one of them be resolved by default (if no attributes are specified)?