Hi! I started using a libs.versions.toml
file and it simplified my build files but I don’t know what to do about dependencies that include the OS name.
implementation libs.bundles.nice.one
implementation libs.bundles.nice.two
implementation libs.nice.three
implementation "org.foo:bar-gl3-natives-$currentOS:$currentVersion"
I found this discussion which talks about using classifiers, but the gradle documentation seems to discourage using them.
Anyone has figured out how to do this nicely?