Hi,
I'm trying to update the Titanium SDK version for a production Android mobile app from 3.2.3 version to higher (3.3.0, 3.5.0, etc.) The problem is that I see many events and callbacks are not fired with 3.3.0 or higher. For instance, this code snippet:
if (Alloy.CFG.device.is_android) { var intent = Titanium.Android.createIntent({ action : Ti.Android.ACTION_PICK, type : "video/*" }); intent.addCategory(Ti.Android.CATEGORY_DEFAULT); Ti.Android.currentActivity.startActivityForResult(intent, pickVideoItemCallback); }With SDK 3.2.3 the "pickVideoItemCallback" callback event is fired and executed without any problem. But, if I update the SDK version to 3.3.0 (or higher), the callback method is never executed.
Does anybody have some information about this fact? I'm using a physical SIII device and a Galaxy Note 8 tablet, with same results.
Thanks in advance