Posts

Showing posts with the label Titantium

30+ Cross Platform Mobile App and Game Development Tools

Image
30+ Cross Platform Mobile App and Game Development Tools http://www.riaxe.com/blog/top-cross-platform-mobile-development-tools/?fb_action_ids=10201601507067999&fb_action_types=og.comments&fb_source=other_multiline&action_object_map=[233188210202347]&action_type_map=[%22og.comments%22]&action_ref_map=[]

Titanium iOS/Android cross platform memo

As possible as you can choose non-dependent interface on specific platform.  Be careful the include *.js path.  Localization file at the string.xml file. When you find some item name displayed have problem, you need to check the file first.

Write data to file in Titanium

var configDir = Titanium.Filesystem.getFile( Titanium.Filesystem.applicationDataDirectory, "dirPath" );             if ( configDir.exists() ) {          configDir.createDirectory();      } var config = Titanium.Filesystem.getFile( configDir.resolve(), "fileName" );             if ( config.write( writeSettingToConfig( userID ) ) == false )     {         // handle write error         var error;     }     config = null;     configDir = null;

FETCHING DATA FROM GOOGLE PLACES API USING TITANIUM

FETCHING DATA FROM GOOGLE PLACES API USING TITANIUM http://boydlee.com/appcelerator-titanium/fetching-data-from-google-places-api-using-titanium.html

Problem of Titanium sdk install Android SDK

Image
Install Android SDK to Titanium in windows you may occur some problem: Could not loacate the android sdk titantium Add empty folder "android-7" into "$ANDROID_SDK/platforms/", copy your android sdk folder's content into "android-7". ( for ex: "android-13" to "android-7" ) [ ERROR ] Required jarsigner not found [ ERROR ] Required javac not found [ ERROR ] Required java not found [ ERROR ] One or more required files not found - please check your JAVA_HOME environment variable JAVA_HOME = C:\Program Files\Java\jdk1.7.0_01 But JDK is needed 1.6, reinstall JDK 1.6 and set JAVA_HOME = C:\Program Files\Java\jdk1.6.0_29