I spent hours on debugging trying to figure out why my app stops working in some cases.
Titanium does not give you a proper error when a javascript variable/function does not exist
Example:
console.log(myObject); //works console.dir(myObject); //does not work, and it does not give any error, //your app also does not execute anything past this point.
1 Answer
if you turn on validation in your preferences, you will get errors and warnings displayed in your source code
Your Answer
Think you can help? Login to answer this question!