We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there any way to setup gradle without manually build ndk? I tried with this gradle dependencies:
implementation platform("org.lwjgl:lwjgl-bom:3.2.3") implementation "org.lwjgl:lwjgl" implementation "org.lwjgl:lwjgl-opus" // linux runtimeOnly "org.lwjgl:lwjgl::natives-linux" runtimeOnly "org.lwjgl:lwjgl-opus::natives-linux" // arm64 runtimeOnly "org.lwjgl:lwjgl::natives-linux-arm64" runtimeOnly "org.lwjgl:lwjgl-opus::natives-linux-arm64" // arm32 runtimeOnly "org.lwjgl:lwjgl::natives-linux-arm32" runtimeOnly "org.lwjgl:lwjgl-opus::natives-linux-arm32"
But after I called Library.initialize() I get:
java.lang.UnsatisfiedLinkError: Failed to locate library: liblwjgl.so at org.lwjgl.system.Library.loadSystem(Library.java:162)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there any way to setup gradle without manually build ndk? I tried with this gradle dependencies:
But after I called Library.initialize() I get:
The text was updated successfully, but these errors were encountered: