If I have multiple variants of a target, how does ...
# multiplatform
e
If I have multiple variants of a target, how does gradle resolution work? Does the project requesting the artifacts have to use the same variant name?
r
I think resolution fails unless you define an attribute to disambiguate it and the consuming project declares that attribute. See https://kotlinlang.org/docs/multiplatform-set-up-targets.html#distinguish-several-targets-for-one-platform
e
That looks like it, thanks!