Loading libnativeloader/native_loader.cpp +6 −1 Original line number Diff line number Diff line Loading @@ -130,7 +130,12 @@ class LibraryNamespaces { // TODO (dimitry): This is a workaround for http://b/26436837 // will be removed before the release. if (target_sdk_version <= 23) { // check if libart.so is loaded. void* handle = dlopen("libart.so", RTLD_NOW | RTLD_NOLOAD); if (handle != nullptr) { publicNativeLibraries += ":libart.so"; dlclose(handle); } } // END OF WORKAROUND Loading Loading
libnativeloader/native_loader.cpp +6 −1 Original line number Diff line number Diff line Loading @@ -130,7 +130,12 @@ class LibraryNamespaces { // TODO (dimitry): This is a workaround for http://b/26436837 // will be removed before the release. if (target_sdk_version <= 23) { // check if libart.so is loaded. void* handle = dlopen("libart.so", RTLD_NOW | RTLD_NOLOAD); if (handle != nullptr) { publicNativeLibraries += ":libart.so"; dlclose(handle); } } // END OF WORKAROUND Loading