I have a strange error on this code in running
but if i clean the project, this error is not present.
i have b4i 2.51 and xcode 6.5 on yosemite.
B4X:
Dim TimeMeteo As String
Dim NameMeteo As String
TimeMeteo = TimeMap.Get("time")
Log("TimeMeteo=" & TimeMeteo)
'If TimeMeteo > Sunset Or TimeMeteo < Sunrise Then
If TimeMeteo >= "19:00" Or TimeMeteo <= "05:00" Then
NameMeteo = "night_"
Else
NameMeteo = "day_"
End If
B4X:
TimeMeteo=19:00
An error occurred:
(Line: 413) 413
java.lang.NumberFormatException: For input string: "19:00"
but if i clean the project, this error is not present.
i have b4i 2.51 and xcode 6.5 on yosemite.