STT-tensorflow/tensorflow/lite/java/tflite_version_script.lds
Jared Duke 4c057f005c Include native C symbols and headers for TFLite AARs
RELNOTES=TensorFlow Lite Android AARs now include the C headers
and APIs required to use TFLite from native code.
PiperOrigin-RevId: 284294408
Change-Id: I10052adba8355cb0d980728aca518efad1187272
2019-12-06 17:40:31 -08:00

13 lines
163 B
Plaintext

VERS_1.0 {
# Export JNI and native C symbols.
global:
Java_*;
JNI_OnLoad;
JNI_OnUnload;
TfLite*;
# Hide everything else.
local:
*;
};