package com.gravityworks.derby.titanium; import org.appcelerator.titanium.ITiAppInfo; import org.appcelerator.titanium.TiApplication; import org.appcelerator.titanium.TiProperties; import org.appcelerator.titanium.util.Log; /* GENERATED CODE * Warning - this class was generated from your application's tiapp.xml * Any changes you make here will be overwritten */ public final class @file implements ITiAppInfo { private static final String LCAT = "AppInfo"; public @file(TiApplication app) { TiProperties properties = app.getSystemProperties(); properties.setString("ti.deploytype", "development"); } public String getId() { return "com.gravityworks.derby.titanium"; } public String getName() { return "DerbyApp"; } public String getVersion() { return "1.0"; } public String getPublisher() { return "Gravity Works Design LLC."; } public String getUrl() { return "http://www,gravityworksdesign.com"; } public String getCopyright() { return "2011 by Gravity Works Design LLC."; } public String getDescription() { return "Titanium Mobile version of the Derby Names Application for Cross Platform Mobile Development Book released by WROX."; } public String getIcon() { return "appicon.png"; } public boolean isAnalyticsEnabled() { return true; } public String getGUID() { return "cd795f6c-9adb-473d-9078-1a1c9a3d8b55"; } public boolean isFullscreen() { return false; } public boolean isNavBarHidden() { return false; } }