Enable native_bridge_support for jsoncpp
Android build system added support for building translated binaries
used on natively bridge targets (arm on x86 for example).
However in order to avoid building unnecessary binaries and libraries
for such architectures most modules do not support native bridge by default.
All needed modules have to explicitly indicate if they may be used as part
of translated binary build.
This change enabled native bridge support for jsoncpp since libcutils
depends on it; libcutils is a greylisted library and needs to be
available to apps targeting Andorid version < 24
Bug: http://b/77159578
Test: make
Change-Id: Ic932eb2dbef62f23fa1a1783dfc464af1d7326a0
diff --git a/Android.bp b/Android.bp
index 3209f02..568cfd3 100644
--- a/Android.bp
+++ b/Android.bp
@@ -40,6 +40,7 @@
},
host_supported: true,
recovery_available: true,
+ native_bridge_supported: true,
}
cc_library_static {