diff options
author | Jack Yu <jackcwyu@google.com> | 2020-05-21 15:13:58 +0800 |
---|---|---|
committer | George Chang <georgekgchang@google.com> | 2020-05-25 15:47:14 +0800 |
commit | b8b2823edddd8275c1d154714f7965bbedfa1adb (patch) | |
tree | 00e0bae062d7d65f5775bcfcb28864216ff0e9cd | |
parent | 6b46ee4406e233f0dd48ed65dc4c0d57e9cf1c2f (diff) |
Fix ActivityNotFoundException
In Android 11, we need an additional permission to access all other
installed packages
Bug: 157119957
Test: build pass
Merged-In: I721549c68430bec4f777e560642864907c60f90f
Change-Id: I721549c68430bec4f777e560642864907c60f90f
-rwxr-xr-x | AndroidManifest.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 846db3a..a26b112 100755 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -2,6 +2,7 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.se" android:sharedUserId="android.uid.se"> + <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/> <application android:name=".SEApplication" android:label="SecureElementApplication" android:persistent="true" |