I've downloaded drodin's android app "Tux rider" source code, in order to build it my self. https://github.com/drodin/TuxRider
in the application, there's a call for a library called "tuxrider"
System.loadLibrary("tuxrider");
but there's no such library, and I'm not managing to figure out how to build one from all the files there.
Thanks in advance for any suggestions.
There seem to be build scripts for that library in TuxRider/jni/tuxrider. You'll probably need to download Android NDK (http://developer.android.com/sdk/ndk/index.html) and read this page to build it: http://developer.android.com/sdk/ndk/overview.html
Finally I menaged to solve a problem. It was caused by GoogleAds, not by
tuxrider
library. Simply, comment all mentioning of GoogleAds inMainActivity.java
. That includes:After this, all should work fine. Chears!