Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

android open app info programmatically

Intent intent = new Intent(android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
intent.setData(Uri.parse("package:" + getPackageName()));
startActivity(intent);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #android #open #app #info #programmatically
ADD COMMENT
Topic
Name
5+2 =