iOS Question Help! Crash since updating to B4I 10.0

touchsquid

Active Member
Licensed User
Longtime User
I recently updated to B4i 10.0

Now an app which previously compiled and ran ok in debug mode and was in the testing stage crashes shortly after start up. Although it gives aline number in the log, it is not always the same line. Since I was in the process of editing some small items in the app, it is possible a slip of the finger has caused the problem, but I need help to troubleshoot it.

The app is large and complex and uses background location services.

Here is the complete log file.
Application_Start
started
Main Created
SignalHandler 6
Version: 6.0.1
Class (b4i_keyvaluestore) instance released.
Call B4XPages.GetManager.LogEvents = True to enable logging B4XPages events.
Application_Active
Error occurred on line: 88 (HttpUtils2Service)
Signal - 6
Stack Trace: (
"0 Active Race SignalHandler + 108",
"1 libsystem_platform.dylib 0x000000021301deec 9B52C743-8794-3D22-9564-B6BCF3303389 + 16108",
"2 libsystem_pthread.dylib 0x00000002130ccb40 pthread_kill + 268",
"3 libsystem_c.dylib abort + 124",
"4 libsystem_c.dylib err + 0",
"5 Metal 18C41D5E-7C0C-345D-B52A-714DEE5BF094 + 1652416",
"6 Metal MTLReportFailure + 576",
"7 Metal _MTLMessageContextEnd + 860",
"8 Metal 18C41D5E-7C0C-345D-B52A-714DEE5BF094 + 110704",
"9 Metal 18C41D5E-7C0C-345D-B52A-714DEE5BF094 + 304288"
)
Application_Inactive
 

touchsquid

Active Member
Licensed User
Longtime User
After single stepping through the code, nothing crashes until this line:
gmap.Initialize("gmap", ApiKey)
I think it might be a permissions issue. I did change the minversion to 16 from 13, but setting it back to 13 made no difference.
 
Upvote 0

mcqueccu

Well-Known Member
Licensed User
Longtime User
Check the updated google maps example

 
Upvote 0
Top