I have a MsgBox on my application and i have realised that the text isn't showing on Android 6.0 devices, but on other android versions it is.
My SdkVersion is set to 23, and this is the code of the dialog
B4X:
If gpsClient.GPSEnabled=False Then
ret = Msgbox2("GPS Disabled. Enable?", "GPS Disabled", "YES", "", "NO", Null)
Select ret
Case DialogResponse.POSITIVE
StartActivity(gpsClient.LocationSettingsIntent)
End Select
End If
The MsgBox always appears, but on android 6.0 shows an empty MsgBox with the buttons YES and NO.
If you use the string collector (ret) sometimes shows the MsgBox empty, and sometimes just goes out the sub.
Without "ret" (Your code, Erel) the app show the MsgBox empty.