-
-
Notifications
You must be signed in to change notification settings - Fork 15
Upgrading native libraries
DC* edited this page Aug 7, 2020
·
6 revisions
Upgrading JNA:
JNA native libraries are obtained from:
https://github.com/java-native-access/jna
You'll have to download the required version from: https://github.com/java-native-access/jna/tree/master/dist (or https://github.com/java-native-access/jna/tree/4.5.X/dist)
Next you'll have to put them on the corresponding architecture directory under:
app/libs
Currently we support the following architectures:
- arm64-v8a: https://github.com/java-native-access/jna/blob/4.5.X/dist/android-aarch64.jar
- armeabi-v7a: https://github.com/java-native-access/jna/blob/4.5.X/dist/android-armv7.jar
- x86: https://github.com/java-native-access/jna/blob/4.5.X/dist/android-x86.jar
- x86_64: https://github.com/java-native-access/jna/blob/4.5.X/dist/android-x86-64.jar
The jars referenced above contains the *.so files needed. Extract and put them under app/libs.