Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在库选项卡中添加了 gdx.jar 和 gdx-backend-android.jar。我java.lang.UnsatisfiedLinkError: newWorld得到
java.lang.UnsatisfiedLinkError: newWorld
gravity = new Vector2(0,10f); world = new World(gravity, false);
谷歌源代码跟踪器中的所有问题都无法帮助我。
您只使用我假设的 box2d 包装器。在这种情况下,您必须自己通过 System.load("gdx") 加载本机。
您是否将这些库添加到应用程序的构建路径中?