I am implementing an application. When closing the application the emulator crashes and shows an error dialog with text ""User breakpoint called from code at 0x6001a0bb". What is the meaning of this note?
Error codes which start with 0x6001... result from unfreed resources. In practise, this happens if you allocate some memory, but do no free it during application life time. Error code 0x6001... can also happen if you do not use CleanupStack properly (you are pushing something in the stack never pop it).