Question: Suppose I have, in my project, registere...
# community-support
k
Question: Suppose I have, in my project, registered a feature variant. What's the proper way to have the variant "depend on" the main source set? One answer suggested
Copy code
dependencies {
  "variantImplementation"(project(path))
}
That seems... awkward.
v
Besides that I personally would use
val variantImplementation by configurations.existing
instead of the string-y usage in
dependencies
, what do you think is awkward?