From c24ca894f541c78c661ad40ec9bcf78384f2b26d Mon Sep 17 00:00:00 2001 From: Dimitry Ivanov Date: Tue, 2 Feb 2016 10:40:08 -0800 Subject: [PATCH] Include icu4c libraries to the list of public libs Note that with this change the linker will ignore icu libraries provided by an app because public libraries are always provided by system. At this point it does not affect any apps because before Marshmallow all of them were getting platform version of icu4c libs anyways (they will be getting their own copy of the library only in Marshmallow release). Bug: http://b/26217329 Bug: http://b/26929349 Change-Id: I681cab43c9f28ec22319d9f0424bd3df00743a5f --- libnativeloader/native_loader.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libnativeloader/native_loader.cpp b/libnativeloader/native_loader.cpp index 6e6b0b944..209ff1cc3 100644 --- a/libnativeloader/native_loader.cpp +++ b/libnativeloader/native_loader.cpp @@ -42,6 +42,8 @@ static const char* kPublicNativeLibraries = "libandroid.so:" "libGLESv1_CM.so:" "libGLESv2.so:" "libGLESv3.so:" + "libicui18n.so:" + "libicuuc.so:" "libjnigraphics.so:" "liblog.so:" "libmediandk.so:"