Skip to content

Communication with App Detail Settings using Titanium Intent #13547

Answered by m1ga
beppo-ivel asked this question in Q&A
Discussion options

You must be logged in to vote

click on the window:

var win = Ti.UI.createWindow();
win.open();
win.addEventListener("click", function(e) {
	var intent = Ti.Android.createIntent({
		action: 'android.settings.APPLICATION_DETAILS_SETTINGS',
		data: "package:" + Ti.App.id
	});

	intent.addFlags(Ti.Android.FLAG_ACTIVITY_NEW_TASK);
	Ti.Android.currentActivity.startActivity(intent);
});

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@beppo-ivel
Comment options

@m1ga
Comment options

m1ga Aug 28, 2022
Collaborator

@beppo-ivel
Comment options

Answer selected by beppo-ivel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants