Permission GET_CONTENT not work in android 14

Yes, this is one of the countless bugs in Kodular that I’ve been talking about for years. The image component incorrectly requests READ permission. Furthermore, on Android 13+, it also requests READ_EXTERNAL_STORAGE, which no longer exists on Android 13+. No storage permission should be requested here at all.

So use an extension to display the image without storage permission, e.g., Picasso.

Example blocks


As I’ve suggested to the MIT AI2 team several times, all automatic storage permission requests should be removed from the components (at least on Android 11+). I’ve explained it there in detail several times.

1 Like