Created
September 7, 2012 15:17
-
-
Save Barneybook/3667078 to your computer and use it in GitHub Desktop.
Titanium Tip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Titanium.App.exit for Android | |
//Use finish() method for current activity: | |
var activity = Titanium.Android.currentActivity; | |
activity.finish(); | |
//Works for 1.5+: http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.Android.Activity-object.html | |
Ti.API.info(JSON.stringify(someObject)); | |
//http://developer.appcelerator.com/question/99291/printing-a-javascript-object-to-the-log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment