af.CreateGlobals();

af.cl.Config({
	appName:'Test Pilot One Eleven',
	clientEnvironmentOverrides:true,
	trapErrors:true,
	dependencies:[
		'js/3rdparty/A5.cl.ui.js',
		'js/3rdparty/plugins/IOSSetup.js',
		'js/3rdparty/plugins/IScroll.js',
		'js/views/MainView.js'
	]
})

af.Package('com.testpilot111')

	.Extends('af.cl.CLApplication')
	.Class('Application', function(self, im){
		
		self.Application = function(){
			self.superclass(this);
			self.backgroundColor('#000');
		}
});


af.cl.CreateApplication({
	applicationPackage:'com.testpilot111',
	application:'com.testpilot111.Application',
	rootViewDef:'Main.xml'
})

