Is there a way I can get the latest fixes in compo...
# compose
k
Is there a way I can get the latest fixes in compose ahead of the next beta release? It is blocking me from developing the app I'm currently writing.
h
https://androidx.dev/ use snapshot builds
k
So yes I actually tried that but the dependency didn't resolve I added this in my project build.gradle file
Copy code
maven { url '<https://androidx.dev/snapshots/builds/7475385/artifacts/repository>' }
What I am unable to comprihend is what should I put the compose version as
1.0.0-beta09
or something else
a
You should use
1.0.0-SNAPSHOT
.
🙏 1