diff options
author | Ganesh Deva <ganesh.deva_1@nxp.com> | 2020-07-22 19:17:35 +0530 |
---|---|---|
committer | nxf24591 <nanjesh.s_1@nxp.com> | 2020-09-08 17:44:08 +0530 |
commit | 372bf89244506db5ff0cce525d84114b7c31c21d (patch) | |
tree | 35c013f234b927ff711af2ce6fa1eef13f4a53dc | |
parent | 48765d6fa4acb0df576e5b686ceb2b0bbf6ba449 (diff) |
Fix ActivityNotFoundException
In Android 11, we need an additional permission to access all other
installed packages
-rwxr-xr-x | AndroidManifest.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index e834d82..18f1cca 100755 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -3,6 +3,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" |