We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae333ed commit 664969bCopy full SHA for 664969b
core/java/android/content/ContentResolver.java
@@ -2573,7 +2573,11 @@ public final IContentProvider acquireUnstableProvider(Uri uri) {
2573
if (auth != null) {
2574
GmsDynamiteClientHooks.maybeInit(auth);
2575
2576
- return acquireUnstableProvider(mContext, uri.getAuthority());
+ try {
2577
+ return acquireUnstableProvider(mContext, uri.getAuthority());
2578
+ } catch (SecurityException e) {
2579
+ GmsCompat.catchOrRethrow(e);
2580
+ }
2581
}
2582
return null;
2583
0 commit comments