this code return Success false on android 11 is it need a permission?
B4X:
Dim CC As ContentChooser
CC.Initialize("cc")
CC.Show("image/*", "choose image")
Wait For CC_Result (Success As Boolean, Dir As String, FileName As String)
Log(Success)
If Success Then
imgProfile.SetBitmap(xui.LoadBitmap(Dir, FileName))
Else
ToastMessageShow("Error Load Image",True)
End If