From af59c6b2a0ff0c8f8efce610c49fc6316c2c1ef4 Mon Sep 17 00:00:00 2001 From: Michael Hoisie Date: Tue, 28 Nov 2023 00:08:24 +0000 Subject: Switch py3-launcher to use libsqlite_static_noicu The 'libsqlite' library for host recently switched on the SQLITE_ENABLE_ICU flag, which now requires ICU libraries to be included in binaries that link libsqlite statically. Because py3-launcher does not need the ICU extensions, switch to using the 'libsqlite_static_noicu' target. Test: m py3-launcher-autorun Bug: 308173442 Change-Id: If9165a1c8afaed693cf2e0c95ecad9d6b3a21670 --- Android.bp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Android.bp b/Android.bp index 594f47132f..630fefe20b 100644 --- a/Android.bp +++ b/Android.bp @@ -385,7 +385,7 @@ cc_defaults { }, host: { static_libs: [ - "libsqlite", + "libsqlite_static_noicu", "liblog", "libopenssl_ssl", "libopenssl_crypto", -- cgit v1.2.3