summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Patrick Baumann <patb@google.com> 2020-11-12 16:55:06 +0000
committer Inseob Kim <inseob@google.com> 2020-11-13 13:27:59 +0900
commit2288e2adffd8f6e634b63f809780dbcc3920a3d1 (patch)
tree769d11388895fe718a753d311f8dcfacaf890beb
parentbdd6c53abb0215da583479444f46f5609a6f3472 (diff)
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 Merged-In: I21f9d158f60d0cf47e3631bb37ece711b3450494 Fixes: 173103133 (cherry picked from commit 22efaa84228c277c436b4537a9189778c022fab5)
-rw-r--r--core/java/android/app/LoadedApk.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/java/android/app/LoadedApk.java b/core/java/android/app/LoadedApk.java
index 9a068674c3fc..a21a156e5459 100644
--- a/core/java/android/app/LoadedApk.java
+++ b/core/java/android/app/LoadedApk.java
@@ -103,7 +103,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;
@@ -909,7 +908,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 {