Answer the question
In order to leave comments, you need to log in
Configuration problems in android studio. How to fix?
https://drive.google.com/file/d/0B7TPoSh3BFCxSF9wM...
and here is the error itself
Answer the question
In order to leave comments, you need to log in
In LibGDX, this happens when the system username
contains invalid characters. To fix this
, write this in the main method before initializing the launcher:
String correctUserName = "Здесь ваше имя пользователя латиницей";
System.setProperty("user.name",correctUserName);
public static void main (String[] arg) {
setupUserName();
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
new LwjglApplication(new Touch(), config);
}
private static void setupUserName() {
String correctUserName = "Здесь ваше имя пользователя латиницей";
System.setProperty("user.name",correctUserName);
}
Use an interpreter if you don't know the language.
Install the library.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question