Steps to Reproduce
Create a project and place a breakpoint in a click event handler.
Debug on an Android Device.
Trigger the event handler.
Wait for a minute or so in paused state.
Actual Result
After a brief pause, the current window disappears, leaving the splash screen showing, and the app shows up as terminated in the Debug view.
Expected Result
Application pauses normally, as in iOS.
Test Code
var win1 = Titanium.UI.createWindow({
title:'Tab 1',
backgroundColor:'#fff'
});
var label1 = Titanium.UI.createLabel({
text:'Click Me',
});
win1.add(label1);
label1.addEventListener('click', function(e) {
Ti.API.info("We got this far!");
});
win1.open();
Android log output.
Might be an SDK issue, not sure...