diff options
| author | 2017-03-06 13:14:01 -0800 | |
|---|---|---|
| committer | 2017-03-06 13:14:01 -0800 | |
| commit | e45606d6c66019ef4d0dea6fcf5eb50b57276868 (patch) | |
| tree | 787f2e565d47e385a71f6da1397454911ebd1b0c | |
| parent | 748bf77274f6b1badc18c0f2b2f9e54fb7f282e8 (diff) | |
Expose ACCESS_INSTANT_APPS to the verifier
The package verifier needs to be able to see Instant Apps in order to do
its job. It already sees them on first install so no new information
about what Instant Apps are installed is leaked.
Test: builds
Change-Id: I5d892b2d7aa820a9c0c00ac357f20a3210cf3395
| -rw-r--r-- | core/res/AndroidManifest.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index 5bfcda37294d..c2a2e690238d 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -3226,7 +3226,7 @@ <!-- Allows the holder to access the instant applications on the device. @hide --> <permission android:name="android.permission.ACCESS_INSTANT_APPS" - android:protectionLevel="signature|installer" /> + android:protectionLevel="signature|installer|verifier" /> <!-- Allows receiving the usage of media resource e.g. video/audio codec and graphic memory. |