I have been tracking this one down for a couple of days and finally have a very simple use case the fails on my Galaxy S4, the Genymotion S4 emulator and my Nexus 7, so I would like to know if anyone else has seen this and has a workaround. Seems to be since SDK 3.2 that this is an issue. The only thing I have is a switch on a window. When I set the switch value in code, the app fails.
Environment: Ti SDK 3.2 Mac OSX 10.8.5 Studio v3.2.1.201401081514
index.xml
<Alloy> <Window id="win" class="container" title="Home" navBarHidden="true" onOpen="Init"> <Switch id="ppi" top="5dp" value="false"></Switch> </Window> </Alloy>index.js
//$.ppi.value = 0; function Init(){ $.ppi.value = 0; } $.win.open();I have tried setting ppi.value inside the Init function and outside the Init function. Either way, I get the same result. "Unfortunately TestApp has stopped.". If I remove the explicit set of the value in code, works normally.
Ray