App crashing, but no errors in terminal

What things can I do to troubleshoot my crashing app when there are no errors in the terminal.

The whole things runs great, no more terminal errors and alerts… but still every 4 or 5 pages it just stops and closes.

The size is about 250mb. This shouldn’t be too big should it? [import]uid: 106593 topic_id: 22929 reply_id: 322929[/import]

android/ios/device/terminal?

can you open up your termina and see what errors?

maybe filename mistmatch?

Foo.png instead of foo.png

do you do a lot of require’s? maybe same "require (“Foo”)) instead of require (foo)

c
[import]uid: 24 topic_id: 22929 reply_id: 91590[/import]

Carlos,
Device… Both my iPad and iPhone.

The terminal was showing the aldelete buffer failed error, but I cleaned up the code and now I have no errors at all in the terminal.

As for the rest of it… I used Kwiksher to create this app. I didn’t create the code myself, just a few minor manual edits.

Alex at Kwiksher told me that if it might be something with the Corona audio library and that I should ask to send my project to you guys…

Thanks for the reply! [import]uid: 106593 topic_id: 22929 reply_id: 91616[/import]

alDeleteBuffer failing suggests that you tried to call audio.dispose() on a file handle that was still being played. That will fail and might crash or that could lead to memory leaks in your app which might contribute you to running out of RAM. Make sure you are properly managing your audio resources.

[import]uid: 7563 topic_id: 22929 reply_id: 91620[/import]