From 22efaa84228c277c436b4537a9189778c022fab5 Mon Sep 17 00:00:00 2001 From: Patrick Baumann Date: Thu, 12 Nov 2020 16:55:06 +0000 Subject: [PATCH] Remove pi.append_native_lib_paths property This change removes the "pi.append_native_lib_paths" property added as a kill switch for a feature that has been out in the wild now for several releases now. Change-Id: I21f9d158f60d0cf47e3631bb37ece711b3450494 Fixes: 173103133 --- core/java/android/app/LoadedApk.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/java/android/app/LoadedApk.java b/core/java/android/app/LoadedApk.java index 4eef6161df582..6535387acdf34 100644 --- a/core/java/android/app/LoadedApk.java +++ b/core/java/android/app/LoadedApk.java @@ -102,7 +102,6 @@ final class ServiceConnectionLeaked extends AndroidRuntimeException { public final class LoadedApk { static final String TAG = "LoadedApk"; static final boolean DEBUG = false; - private static final String PROPERTY_NAME_APPEND_NATIVE = "pi.append_native_lib_paths"; @UnsupportedAppUsage private final ActivityThread mActivityThread; @@ -926,7 +925,7 @@ public final class LoadedApk { needToSetupJitProfiles = true; } - if (!libPaths.isEmpty() && SystemProperties.getBoolean(PROPERTY_NAME_APPEND_NATIVE, true)) { + if (!libPaths.isEmpty()) { // Temporarily disable logging of disk reads on the Looper thread as this is necessary StrictMode.ThreadPolicy oldPolicy = allowThreadDiskReads(); try {