Anyone knows how to get a Uri from a File using Ko...
# compose-android
a
Anyone knows how to get a Uri from a File using Kotlin 2.0 and latest stable Jetpack Compose?
m
This seems to be unrelated to Compose. As with non-Compose UIs, use
FileProvider
to share content stored as local files via
Uri
values. See the documentation for more.
thank you color 1