I’m using LWJGL which has native libraries for my project to use. My question is how do I add native libraries to a Java project in VSCode? Also, when I created the project I selected the “no build tools” option if that’s helpful. Answer If you don’t maven or gradle in your project, choosing no build tools is okay. Then
Tag: libraries
Why doesn’t Android Studio recognize Base64.encodeBase64?
I’m trying run the following code, however I cannot use encodeBase64(). I’ve already tried to import such libraries using Alt + Enter. How can I make it work? Answer use this: instead of what you are using, i also advise you to use: .getBytes(“UTF-8”); instead of data.getBytes(); UTF-8 is always a better choice. hope this will help you.