I am developing a small application that lists only those applications that connect to the Internet. How can I read the Android manifest file from the Packageinfo class to access the permission settings for each application programmatically?
private void getWebApps() {
In the code above, “installedapplist” is an array that stores the names of applications. But before adding to the list, I need to check only those applications that access the Internet. Can someone help me how to check permission?
source share