.examples Fix AndroidMath MemoryManger class

git-svn-id: svn://ultimatepp.org/upp/trunk@9573 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
klugier 2016-03-06 12:42:09 +00:00
parent 9bfb121075
commit f5c559e7b8
7 changed files with 94 additions and 51 deletions

View file

@ -59,4 +59,15 @@ public class AndroidMathActivity extends Activity
tv.append(text);
}
static {
// For Android version less than 5.0 we need to specific standard library
// System.loadLibrary("gnustl_shared");
System.loadLibrary("c++_shared");
// In this place we are loading native libraries (In revers dependency order).
// IMPORTANT: Native library always has upp package name!!!
System.loadLibrary("AndroidMathUtility");
System.loadLibrary("AndroidMath");
}
}