Hello,
Sometimes, when I use the Proper functions of library StringFunctions, my app remains "processing" something and does not continue. There is no error, no log.
For example:
App remains on 'texto = Starter.sf.Proper(case.Get("social"))'. And nothing happens.
Any idea?
Sometimes, when I use the Proper functions of library StringFunctions, my app remains "processing" something and does not continue. There is no error, no log.
For example:
B4X:
If IsNumber(txt_cuit.Text) Then
Starter.type_request = "GET"
Starter.url_request = "app/x007s/cuit/" & txt_cuit.Text & "/"
send_request
wait for request_complete
If Starter.success_request Then
Dim jp As JSONParser
jp.Initialize(Starter.response)
Dim respond As List = jp.NextArray
If respond.Size > 0 Then
For Each case As Map In respond
Dim texto As String
texto = Starter.sf.Proper(case.Get("social"))
lab_name.Text = texto.trim
Next
End If
End If
End If
App remains on 'texto = Starter.sf.Proper(case.Get("social"))'. And nothing happens.
Any idea?