I know it might sound foolish to ask, but can I us...
# compose
a
I know it might sound foolish to ask, but can I use the experimental UUID feature in Kotlin for production-quality apps? It's easy to implement, but at the same time, it's marked as experimental. Is there any possibility that it could change in the future and end up crashing the whole app?
z
In general, you can use experimental features in apps, as long as you're willing to deal with the potential effort to update your code whenever you update the library/language that the feature is coming from.
👍 1
They're unsafe to use from libraries because apps consuming a library can use different versions of your dependencies than you expect.
👍 1