Here's a small example:
The if clause gets red and app will not compile. This happens when comparison is done with "end".
For now I use
and it works.
B4X:
Dim something As String="end"
' this won't compile
If something="end" Then
Log("ok")
End If
The if clause gets red and app will not compile. This happens when comparison is done with "end".
For now I use
B4X:
if something.compareTo("end")=0 then