1
0
mirror of https://github.com/moparisthebest/minetest synced 2024-08-13 16:53:49 -04:00

Android: statically load iconv library

Fixes #3291

Thanks to @arpruss for reporting the bug, and suggesting the fix.

Also, remove trailing whitespaces.
This commit is contained in:
est31 2015-10-24 20:44:07 +02:00
parent e46fa22003
commit 49bda7f98d

View File

@ -87,6 +87,7 @@ public class MtNativeActivity extends NativeActivity {
System.loadLibrary("ssl"); System.loadLibrary("ssl");
System.loadLibrary("crypto"); System.loadLibrary("crypto");
System.loadLibrary("gmp"); System.loadLibrary("gmp");
System.loadLibrary("iconv");
// We don't have to load libminetest.so ourselves, // We don't have to load libminetest.so ourselves,
// but if we do, we get nicer logcat errors when // but if we do, we get nicer logcat errors when