iOS Question *** Terminating app due to uncaught exception '', reason: 'Service not found'

Filippo

Expert
Licensed User
Longtime User
Hi,

I occasionally receive crash reports with this message, but I cannot reproduce the error on any iOS devices.
Has anyone else received this message and perhaps already identified the issue?


The error points to this procedure:

B4X:
Public Sub SendAbrollumfang
    Dim strTmp As String = "<" & Starter.flAbrollumfang
    strTmp = strTmp.SubString2(0, Min(strTmp.Length, 7)) 'Max. Anzahl von Zahlen = 7, z.B: 1.96320
    strTmp = (strTmp.Length + 1) & strTmp
'    Log("SendAbrollumfang=" & strTmp)
    If IsXiaoBoard Or IsBTVersion63 Then
        btManager.WriteDataWithResponse(ConnectedServices.Get(btService), charId, strTmp.GetBytes(charset))
    Else
        btManager.WriteData(ConnectedServices.Get(btService), charId, strTmp.GetBytes(charset))
    End If
End Sub
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…