How can i invoke activity info for particular application ??
Sample: This is sample
Thanks for your help.
How can i invoke activity info for particular application ??
Sample: This is sample
Thanks for your help.
From api level 9 and above you should be able to achieve what you want with the following:
Intent i = new Intent(android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
i.setData(Uri.parse("package:" + packageName));
startActivity(i);
Where packageName is for example: com.example.myapp