The release notes say added support for SDK 1.3.0 but in the Eclipse IDE there isn't a 1.3.0 SDK listed.
What SDK should I be targeting for the current (non beta) devices/firmware for all devices? Ta.
I dont use onstop onstart, what are they for?
class MyApp extends App.AppBase {
function initialize() {
AppBase.initialize();
}
//! onStart() is called on application start up
function onStart(state) {
}
//! onStop() is called when your application is exiting
function onStop(state) {
}
//! Return the initial view of your application here
function getInitialView() {
return [ new MyView(), new MyDelegate() ];
}
}