From 30694a0eab211444fcf3b2db7e04aa4892eee25f Mon Sep 17 00:00:00 2001 From: Sahana Rao Date: Thu, 2 Jul 2020 12:23:13 +0000 Subject: [PATCH] Set ENABLE_DYNAMIC_PERMISSIONS = false until ag/12511042 is ready. Bug: 159995598 Bug: 159501682 Bug: 115619667 Change-Id: I6df037161dc36da7f8b33292529bbc37058f819c (cherry picked from commit a2127eb4468e2e9c6796fc94859c0ee976c0dd5a) --- .../java/com/android/server/uri/UriGrantsManagerService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/core/java/com/android/server/uri/UriGrantsManagerService.java b/services/core/java/com/android/server/uri/UriGrantsManagerService.java index 0b0bb7059f3b6..53d51463295fc 100644 --- a/services/core/java/com/android/server/uri/UriGrantsManagerService.java +++ b/services/core/java/com/android/server/uri/UriGrantsManagerService.java @@ -115,7 +115,7 @@ public class UriGrantsManagerService extends IUriGrantsManager.Stub { private static final String TAG = "UriGrantsManagerService"; // Maximum number of persisted Uri grants a package is allowed private static final int MAX_PERSISTED_URI_GRANTS = 512; - private static final boolean ENABLE_DYNAMIC_PERMISSIONS = true; + private static final boolean ENABLE_DYNAMIC_PERMISSIONS = false; private final Object mLock = new Object(); private final H mH;