I implemented sign in using google in my android app.
I followed the steps mentioned on their developer page, used the sample code, generated the google-services.json file. The sign in worked.
Suddenly after two days the same apk could not sign in successfully.
The code fragment giving error is:
GoogleSignInResult result = Auth.GoogleSignInApi.getSignInResultFromIntent(data);
The result.isSuccess() method returns false, indicating sign in has failed.
The error log gives error:
DEVELOPER ERROR resolution = null
Is it some issue with google-services.json ? Why did it stop working suddenly ?