iOS Question iBLE crash with iOS 13.3.1/iPad OS 13.3.1

Mark@Command

New Member
Licensed User
I am receiving a runtime error when trying to use iBLE with the latest version of iOS. The code compiles as expected but when the iBLE manager is initialized, I receive a SignalHandler 6 error message in the error log:

Application_Start
SignalHandler 6
Application_Active
Error occurred on line: 45 (Main)
Signal - 6
Stack Trace: (
"0 B4i Example SignalHandler + 120",
"1 libsystem_platform.dylib 0x0000000186a6f424 B07CC9F8-9C9F-38B0-BB97-4A77BF6A5DB4 + 25636",
"2 libsystem_kernel.dylib 0x0000000186b55f74 AE36DCE0-999D-3990-9EED-01106F17DC90 + 167796",
"3 libsystem_kernel.dylib 0x0000000186b55fa8 AE36DCE0-999D-3990-9EED-01106F17DC90 + 167848",
"4 TCC 97E67D9C-4A10-360C-9F41-2456DCBDC97E + 7144",
"5 TCC 97E67D9C-4A10-360C-9F41-2456DCBDC97E + 6948",
"6 TCC 97E67D9C-4A10-360C-9F41-2456DCBDC97E + 23896",
"7 libxpc.dylib E2894301-267B-3872-A3CD-0AAF659353A9 + 104000",
"8 libxpc.dylib E2894301-267B-3872-A3CD-0AAF659353A9 + 53492",
"9 libdispatch.dylib 0C7A69CD-F2EE-3426-BFD8-742C903D3D07 + 12384"
)


I have also tried to create a new project using the "canned" skeleton code and adding the BLEManager initialization to it. The same error occurs regardless of whether I am using my standard code or the "canned" code. I have tried this code on both an iPad and on an iPhone 11, both with the OS 13.3.1. The canned code is shown below:

'Code module


#Region Project Attributes
#ApplicationLabel: B4i Example
#Version: 1.0.0
'Orientation possible values: Portrait, LandscapeLeft, LandscapeRight and PortraitUpsideDown
#iPhoneOrientations: Portrait, LandscapeLeft, LandscapeRight
#iPadOrientations: Portrait, LandscapeLeft, LandscapeRight, PortraitUpsideDown
#Target: iPhone, iPad
#ATSEnabled: True
#MinVersion: 8
#End Region

Sub Process_Globals
'These global variables will be declared once when the application starts.
'Public variables can be accessed from all modules.
Public App As Application
Public NavControl As NavigationController
Private Page1 As Page
Private BLEManager As BleManager
End Sub

Private Sub Application_Start (Nav As NavigationController)
'SetDebugAutoFlushLogs(True) 'Uncomment if program crashes before all logs are printed.
NavControl = Nav
Page1.Initialize("Page1")
Page1.Title = "Page 1"
Page1.RootPanel.Color = Colors.White
NavControl.ShowPage(Page1)

Try
BLEManager.Initialize("Manager")
Catch
Log(LastException)
End Try

End Sub


Private Sub Page1_Resize(Width As Int, Height As Int)


End Sub

Duplicate post. Inadvertently posted same question to Android forum

Any assistance would be appreciated.

Private Sub Application_Background


End Sub
 
Top