When I use ```implementation(compose.material3)```...
# multiplatform
e
When I use
Copy code
implementation(compose.material3)
in my gradle config, what version of the library is used? (And how can I check it from IDE?)
k
I think
./gradlew :module_name:dependencies
should help
👍 1
e
Also, Cmd + Click the declaration to navigate to the sources is the surest & fastest way 🙂. Additionally to all readers I would suggest do away with the (awful) MPP compose plugin dependencies API. All dependencies should be managed just like the rest in your project; via
libs.versions.toml
. These “shortcuts” do worse for understanding the build script than other APIs.
âž• 3
c
From IDE, in your root project folder you'd navigate to the gradle folder. There's should be a libs.version.toml file which contains the information you're looking for
đźš« 3