A couple of points learnt while writing an Android application using the excellent titanium appcelerator. Determining intent type: var intentType=Ti.Android.currentActivity.getIntent().getType(); intentType will then hold strings such as: 'android.intent.action.MAIN': an application has been opened directly, not via a share or view intent 'android.intent.action.SEND': also known as the share intent, since this is the action that gets broadcast when a … Continue reading Lessons learned : Appcelerator