Files
loongoffice/android/Bootstrap/version.map
Tor Lillqvist 26b8cd2b3e Reduce dynamic symbols and strip all local ones from the Android single .so
Use a version script ("version map") that exports only the Java_* and
JNI_OnLoad symbols that the JNI machinery needs. No non-dynamic
symbols are needed (in the .so that goes into the .apk; the one kept
locally for debugging is not stripped).

Change-Id: Ie874e59c593ec9e5d08ba369612cef1a3ea85fe4
2012-11-16 16:25:17 +02:00

8 lines
81 B
Plaintext

dummy {
global:
Java_*;
JNI_OnLoad;
local:
*;
};