Android .... hmmm.... well... jeigen comprises two parts:
java classes, portable
native library, needs to be built for each platform
If portability is more important than raw performance, you might consider a java-only library. It might be half as fast, especially for matrix multiplications, but it will be significantly more portable, easier to package and install.
Otherwise... you will need to build the native library for your target platform somehow. You can take a look at the CMakeLists.txt, in the src/native directory, and try building this (eg using cmake + some kind of c compiler).
Android .... hmmm.... well... jeigen comprises two parts:
If portability is more important than raw performance, you might consider a java-only library. It might be half as fast, especially for matrix multiplications, but it will be significantly more portable, easier to package and install.
Otherwise... you will need to build the native library for your target platform somehow. You can take a look at the CMakeLists.txt, in the src/native directory, and try building this (eg using cmake + some kind of c compiler).