How do I open wireless settings from a Titanium app for Android?
Is it possible via intent, something like this:
var intent = Ti.Android.createIntent({ action: Ti.Android.ACTION_GET_CONTENT, type: "vnd.android.cursor.item/phone" }); Ti.Android.currentActivity.startActivity(intent);What is the appropriate URI for wireless settings?