forked from amazingfate/loongoffice
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
8 lines
81 B
Plaintext
8 lines
81 B
Plaintext
dummy {
|
|
global:
|
|
Java_*;
|
|
JNI_OnLoad;
|
|
local:
|
|
*;
|
|
};
|