为 tux rider android 应用程序构建 jni 库
我已经下载了 drodin 的 Android 应用程序“Tux rider”源代码,以便自己构建它。 https://github.com/drodin/TuxRider
在应用程序中,有一个名为的库的调用“tuxrider”,
System.loadLibrary("tuxrider");
但没有这样的库,而且我无法弄清楚如何从那里的所有文件构建一个库。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
TuxRider/jni/tuxrider 中似乎有该库的构建脚本。您可能需要下载 Android NDK (http://developer.android.com/sdk/ndk/index.html) 并阅读此页面来构建它: http://developer.android.com/sdk/ndk/overview.html
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
最后我设法解决了一个问题。这是由 GoogleAds 引起的,而不是由
tuxrider
库引起的。只需在MainActivity.java
中注释所有提及 GoogleAds 的内容即可。这包括:
在此之后,一切都应该正常工作。干杯!
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!