我正在尝试使用 LibGDX 附带的 libgdx-freetype 库。对于桌面,我只是将libgdx-freetype.jar
和添加到主项目libgdx-natives.jar
的/libs
文件夹(并添加到构建路径),它就可以工作了。但是,当尝试将相同的库添加到/libs
文件夹并将libgdx-freetype.so
文件添加到/libs/armeabi
和/libs/armeabi-v7a
文件夹时,我收到构建错误:
Description Resource Path Location Type
Native libraries detected in 'gdx-freetype-natives.jar'. See console for more information.
SlotMachine-android Unknown Android Packaging Problem
在 Eclipse 控制台中,我有:
[2012-12-05 17:38:04 - SlotMachine-android] The library 'gdx-freetype-natives.jar' contains native libraries that will not run on the device.
[2012-12-05 17:38:04 - SlotMachine-android] The following libraries were found:
[2012-12-05 17:38:04 - SlotMachine-android] - libgdx-freetype.so
[2012-12-05 17:38:04 - SlotMachine-android] - libgdx-freetype64.so
有人可以指出我做错了什么吗?