I have used following code for sharing of files:-
var activity = Ti.Android.currentActivity; var intent = Ti.Android.createIntent({ action: Ti.Android.ACTION_SEND, type: 'text/plain' });
intent.putExtra(Ti.Android.EXTRA_TEXT,'Place the body of your message here'); intent.putExtra(Ti.Android.EXTRA_SUBJECT, 'Place the subject of your message here'); activity.startActivity(Ti.Android.createIntentChooser(intent,'Share'));
It is working fine in almost all devices but in Moto G (Kitkat) the application icons are not visible.
can anyone help?