Get Firebase to work with java, not Android
Im trying to get a libgdx project up and running and I want to firebase for user logins. I'm finding that the SimleLogin class is depending on Android.jar. Is there a way around this as I would like to have a desktop java application running as well as android. Here is the code that is causing the issue: SimpleLogin authClient = new SimpleLogin(myRef);; authClient.createUser("myuser@gmail.com", "much wow", new SimpleLoginAuthenticatedHandler() { @Override public void authenticated(FirebaseSimpleLoginError error, FirebaseSimpleLoginUser user) { if (error != null) { System.out.println(error); }