In Android 10 and earlier versions, apps can get a list of all installed apps on the device through methods such as queryIntentActivities(). In most cases, this access permission far exceeds the permissions that the app actually needs. As we continue to increase our focus on privacy protection, we will introduce some new changes in Android 11 to change the way apps query and interact with users' installed apps. To achieve this goal, we have brought better access control to the list of apps installed on a specific device.
To better "hold accountable" for access to installed apps, apps targeting Android 11 (target API level 30) will only be able to detect some of the filtered installed apps by default. If you want to get more information about the list of installed apps, you need to add elements to the Android manifest in your app to expand the scope of access. In most common scenarios, including any intents started with startActivity(), you do not need to make any changes. Other scenarios, such as opening a specific third-party application directly from your application's interface, require developers to explicitly declare the application's package name or intent filter signature, as shown below:
If you use Custom Tab to open URL links, you may call resolveActivity() and queryIntentActivities() to launch a non-browser app (provided that you have an app installed to handle the URL). In Android 11, there is a better way to handle this: use the FLAG_ACTIVITY_REQUIRE_NON_BROWSER flag of the intent instead of querying other apps. If a browser is launched when you call startActivity() with this flag, an ActivityNotFoundException will be thrown. At this time, your app can handle this exception and use Custom Tab to open the URL link instead.
In rare cases, your app might need to query or interact with all installed apps on a device, regardless of the components they contain. To allow your app to see all other installed apps, Android 11 introduces the QUERY_ALL_PACKAGES permission. In an upcoming policy update, Google Play will provide guidance for apps that require the QUERY_ALL_PACKAGES permission. You can add elements to your app by setting your API Level to 30 and using Android Studio 3.2+ and the latest Android Gradle plugin. You can find more usage information and use cases for package availability in the developer documentation — Package visibility in Android 11.
Android Studio and Gradle support for this feature If you are using Android Gradle plugin version 4.1 and above, you can use the new element normally, because the old version of the Gradle plugin is not compatible with this element. If you use or depend on a library or SDK that supports Android 11, it may cause manifest conflicts and errors in merging manifests. For example, when building an app, you may see the following error in the Build Output Window:
There may also be an error message like this in the Build Output Window, directing you to view the Manifest merger logs:
When you expand the Merged Manifest view, an additional error message appears:
Merged Manifest View
Fix issues with Android Gradle plugin The best way to resolve the above errors is to upgrade the Android Gradle plugin to version 4.1 Beta. However, not all developers can use the latest version, and some projects may rely on older versions of Gradle or code libraries that are incompatible with the 4.1 version of the Android Gradle plugin. Therefore, we recently released a minor version (dot releases) upgrade for the Android Gradle plugin to be compatible with the <queries> element:
For example, if you are using version 4.0.0 of the Android Gradle plugin, you can upgrade the relevant dependencies to the corresponding versions in the project-level build.gradle file.
|
>>: Scoping in Android and Hilt
The PC Internet era is gradually fading away, and...
Internet fraud has become a social cancer. Whethe...
Users, as one of the most important factors in pr...
[[321342]] According to Tencent's 2019 annual...
When users are faced with product marketing that ...
Cao Maogui's stock market secrets: intraday T...
Our marketing channels are located where there ar...
Q: How to make the name of the mini program bring...
Let me share with you how to achieve fission grow...
Zhengda Anatomy [Daily Explanation of Muscle Pain...
Starting today, all self-service ticket machines ...
My original plan today was to post a long article...
As Honor of Kings becomes more and more popular, ...
My definition of a community is an organization c...
Here we share 4 carefully selected WeChat applets...