Skip to main content

Posts

Showing posts from November, 2012

Titanium Appcelerator - Android and iPhone Application Development

For Download and install Titanium SDK ClickHere . Create new project in Titanium Studio. Now open app.js from Resource/app.js and do below code. /*  * Single Window Application Template:  * A basic starting point for your application.  Mostly a blank canvas.  *   * In app.js, we generally take care of a few things:  * - Bootstrap the application with any data we need  * - Check for dependencies like device type, platform version or network connection  * - Require and open our top-level UI component  *    */ //bootstrap and check dependencies if (Ti.version < 1.8 ) { alert( 'Sorry - this application template requires Titanium Mobile SDK 1.8 or later' );   } // This is a single context application with mutliple windows in a stack /*(function() { //determine platform and form factor and render approproate components var osname = Ti.Platform.osname,