Google Sign-In with LibGDX
I've a problem. I'm making a game with LibGDX. Now I want to implement Google Sign-In. I searched everywhere, but can't find anything. What I need is a Resolver to abstract code for specific platform, but I don't know how to do it. Can someone help? EDIT Here's the code, this is my Android Resolver: public GoogleResolverAndroid(final Context context) { handler = new Handler(); this.context = context; GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN) .requestEmail() .build(); mGoogleApiClient = new GoogleApiClient.Builder(this.context) .addApi(Auth