diff options
| -rw-r--r-- | core/java/android/app/ActivityThread.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/core/java/android/app/ActivityThread.java b/core/java/android/app/ActivityThread.java index 1aa43215ad34..02b94de92509 100644 --- a/core/java/android/app/ActivityThread.java +++ b/core/java/android/app/ActivityThread.java @@ -4945,11 +4945,7 @@ public final class ActivityThread { * This is what ultimately throws {@link FileUriExposedException}. */ if (data.appInfo.targetSdkVersion >= Build.VERSION_CODES.N) { - if ("com.android.qxdmlogger".equals(data.appInfo.packageName)) { - // STOPSHIP: Fix security on this logger tool - } else { - StrictMode.enableDeathOnFileUriExposure(); - } + StrictMode.enableDeathOnFileUriExposure(); } NetworkSecurityPolicy.getInstance().setCleartextTrafficPermitted( |