Google Sign in Error 12500 SHA1 double checked GoogleSignInAccount account =...












0















I am getting this error after selecting a google account. OnActivityResult is called, but after evaluating the result this error is thrown. The cause is not a wrong SHA1, I am using the same key for release and debug. The app is not from Google Play. I am not using firebase. The google signin sample works with the same key.



com.google.android.gms.common.api.ApiException: 12500:



Stacktrace:



W/System.err: com.google.android.gms.common.api.ApiException: 12500: 
W/System.err: at com.google.android.gms.common.internal.ApiExceptionUtil.fromStatus(Unknown Source)
W/System.err: at com.google.android.gms.auth.api.signin.GoogleSignIn.getSignedInAccountFromIntent(Unknown Source)
W/System.err: at de.org.limindo.limindo2.fragLogin.onActivityResult(fragLogin.java:412)
W/System.err: at android.support.v4.app.FragmentActivity.onActivityResult(FragmentActivity.java:151)
W/System.err: at de.org.limindo.limindo2.MainActivity.onActivityResult(MainActivity.java:788)
W/System.err: at android.app.Activity.dispatchActivityResult(Activity.java:5456)
W/System.err: at android.app.ActivityThread.deliverResults(ActivityThread.java:3549)
W/System.err: at android.app.ActivityThread.handleSendResult(ActivityThread.java:3596)
W/System.err: at android.app.ActivityThread.access$1300(ActivityThread.java:151)
W/System.err: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1369)
W/System.err: at android.os.Handler.dispatchMessage(Handler.java:110)
W/System.err: at android.os.Looper.loop(Looper.java:193)
W/System.err: at android.app.ActivityThread.main(ActivityThread.java:5299)
W/System.err: at java.lang.reflect.Method.invokeNative(Native Method)
W/System.err: at java.lang.reflect.Method.invoke(Method.java:515)
W/System.err: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:825)
W/System.err: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:641)
W/System.err: at dalvik.system.NativeStart.main(Native Method)


The code is:



           GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestEmail()
.build();
mGoogleSignInClient = GoogleSignIn.getClient(fragLogin.this._main, gso);


mSignInGoogle0.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View view)
{
Intent signInIntent = mGoogleSignInClient.getSignInIntent();
startActivityForResult(signInIntent, RC_SIGN_IN);

}
});

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);

// Result returned from launching the Intent from GoogleSignInClient.getSignInIntent(...);
if (requestCode == RC_SIGN_IN) {
// The Task returned from this call is always completed, no need to attach
// a listener.
Task<GoogleSignInAccount> task = GoogleSignIn.getSignedInAccountFromIntent(data);
handleSignInResult(task);
}
}


private void handleSignInResult(Task<GoogleSignInAccount> completedTask) {
try {
GoogleSignInAccount account = completedTask.getResult(ApiException.class);

// Signed in successfully, show authenticated UI.
if (account != null)
{
mPasswordView.setVisibility(View.GONE);
mPasswordView.setVisibility(View.GONE);
}
updateUI(account);
} catch (ApiException e) {
e.printStackTrace();
// The ApiException status code indicates the detailed failure reason.
// Please refer to the GoogleSignInStatusCodes class reference for more information.
Log.w(TAG, "signInResult:failed code=" + e.getStatusCode());
lib.ShowMessage(getContext(), getString(R.string.googleloginnotsuccessfull) + "n" + getString(R.string.ErrorCode) + GoogleSignInStatusCodes.getStatusCodeString(e.getStatusCode()) + ":" + e.getStatusCode(), getString(R.string.Error));
updateUI(null);
}
}









share|improve this question

























  • have you setup project in developer console and enabled relative apis?

    – Karan Mer
    Nov 14 '18 at 10:25











  • You mean api console?

    – Hans-Martin Goebel
    Nov 14 '18 at 11:19











  • How do I enable relative apis? I have this project in api console, but I don't find relative apis......

    – Hans-Martin Goebel
    Nov 14 '18 at 11:34











  • check this developers.google.com/identity/sign-in/android/…

    – Karan Mer
    Nov 14 '18 at 11:35











  • I used exactly this page for setting up my project... But it doesn't work!

    – Hans-Martin Goebel
    Nov 14 '18 at 16:13
















0















I am getting this error after selecting a google account. OnActivityResult is called, but after evaluating the result this error is thrown. The cause is not a wrong SHA1, I am using the same key for release and debug. The app is not from Google Play. I am not using firebase. The google signin sample works with the same key.



com.google.android.gms.common.api.ApiException: 12500:



Stacktrace:



W/System.err: com.google.android.gms.common.api.ApiException: 12500: 
W/System.err: at com.google.android.gms.common.internal.ApiExceptionUtil.fromStatus(Unknown Source)
W/System.err: at com.google.android.gms.auth.api.signin.GoogleSignIn.getSignedInAccountFromIntent(Unknown Source)
W/System.err: at de.org.limindo.limindo2.fragLogin.onActivityResult(fragLogin.java:412)
W/System.err: at android.support.v4.app.FragmentActivity.onActivityResult(FragmentActivity.java:151)
W/System.err: at de.org.limindo.limindo2.MainActivity.onActivityResult(MainActivity.java:788)
W/System.err: at android.app.Activity.dispatchActivityResult(Activity.java:5456)
W/System.err: at android.app.ActivityThread.deliverResults(ActivityThread.java:3549)
W/System.err: at android.app.ActivityThread.handleSendResult(ActivityThread.java:3596)
W/System.err: at android.app.ActivityThread.access$1300(ActivityThread.java:151)
W/System.err: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1369)
W/System.err: at android.os.Handler.dispatchMessage(Handler.java:110)
W/System.err: at android.os.Looper.loop(Looper.java:193)
W/System.err: at android.app.ActivityThread.main(ActivityThread.java:5299)
W/System.err: at java.lang.reflect.Method.invokeNative(Native Method)
W/System.err: at java.lang.reflect.Method.invoke(Method.java:515)
W/System.err: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:825)
W/System.err: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:641)
W/System.err: at dalvik.system.NativeStart.main(Native Method)


The code is:



           GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestEmail()
.build();
mGoogleSignInClient = GoogleSignIn.getClient(fragLogin.this._main, gso);


mSignInGoogle0.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View view)
{
Intent signInIntent = mGoogleSignInClient.getSignInIntent();
startActivityForResult(signInIntent, RC_SIGN_IN);

}
});

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);

// Result returned from launching the Intent from GoogleSignInClient.getSignInIntent(...);
if (requestCode == RC_SIGN_IN) {
// The Task returned from this call is always completed, no need to attach
// a listener.
Task<GoogleSignInAccount> task = GoogleSignIn.getSignedInAccountFromIntent(data);
handleSignInResult(task);
}
}


private void handleSignInResult(Task<GoogleSignInAccount> completedTask) {
try {
GoogleSignInAccount account = completedTask.getResult(ApiException.class);

// Signed in successfully, show authenticated UI.
if (account != null)
{
mPasswordView.setVisibility(View.GONE);
mPasswordView.setVisibility(View.GONE);
}
updateUI(account);
} catch (ApiException e) {
e.printStackTrace();
// The ApiException status code indicates the detailed failure reason.
// Please refer to the GoogleSignInStatusCodes class reference for more information.
Log.w(TAG, "signInResult:failed code=" + e.getStatusCode());
lib.ShowMessage(getContext(), getString(R.string.googleloginnotsuccessfull) + "n" + getString(R.string.ErrorCode) + GoogleSignInStatusCodes.getStatusCodeString(e.getStatusCode()) + ":" + e.getStatusCode(), getString(R.string.Error));
updateUI(null);
}
}









share|improve this question

























  • have you setup project in developer console and enabled relative apis?

    – Karan Mer
    Nov 14 '18 at 10:25











  • You mean api console?

    – Hans-Martin Goebel
    Nov 14 '18 at 11:19











  • How do I enable relative apis? I have this project in api console, but I don't find relative apis......

    – Hans-Martin Goebel
    Nov 14 '18 at 11:34











  • check this developers.google.com/identity/sign-in/android/…

    – Karan Mer
    Nov 14 '18 at 11:35











  • I used exactly this page for setting up my project... But it doesn't work!

    – Hans-Martin Goebel
    Nov 14 '18 at 16:13














0












0








0








I am getting this error after selecting a google account. OnActivityResult is called, but after evaluating the result this error is thrown. The cause is not a wrong SHA1, I am using the same key for release and debug. The app is not from Google Play. I am not using firebase. The google signin sample works with the same key.



com.google.android.gms.common.api.ApiException: 12500:



Stacktrace:



W/System.err: com.google.android.gms.common.api.ApiException: 12500: 
W/System.err: at com.google.android.gms.common.internal.ApiExceptionUtil.fromStatus(Unknown Source)
W/System.err: at com.google.android.gms.auth.api.signin.GoogleSignIn.getSignedInAccountFromIntent(Unknown Source)
W/System.err: at de.org.limindo.limindo2.fragLogin.onActivityResult(fragLogin.java:412)
W/System.err: at android.support.v4.app.FragmentActivity.onActivityResult(FragmentActivity.java:151)
W/System.err: at de.org.limindo.limindo2.MainActivity.onActivityResult(MainActivity.java:788)
W/System.err: at android.app.Activity.dispatchActivityResult(Activity.java:5456)
W/System.err: at android.app.ActivityThread.deliverResults(ActivityThread.java:3549)
W/System.err: at android.app.ActivityThread.handleSendResult(ActivityThread.java:3596)
W/System.err: at android.app.ActivityThread.access$1300(ActivityThread.java:151)
W/System.err: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1369)
W/System.err: at android.os.Handler.dispatchMessage(Handler.java:110)
W/System.err: at android.os.Looper.loop(Looper.java:193)
W/System.err: at android.app.ActivityThread.main(ActivityThread.java:5299)
W/System.err: at java.lang.reflect.Method.invokeNative(Native Method)
W/System.err: at java.lang.reflect.Method.invoke(Method.java:515)
W/System.err: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:825)
W/System.err: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:641)
W/System.err: at dalvik.system.NativeStart.main(Native Method)


The code is:



           GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestEmail()
.build();
mGoogleSignInClient = GoogleSignIn.getClient(fragLogin.this._main, gso);


mSignInGoogle0.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View view)
{
Intent signInIntent = mGoogleSignInClient.getSignInIntent();
startActivityForResult(signInIntent, RC_SIGN_IN);

}
});

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);

// Result returned from launching the Intent from GoogleSignInClient.getSignInIntent(...);
if (requestCode == RC_SIGN_IN) {
// The Task returned from this call is always completed, no need to attach
// a listener.
Task<GoogleSignInAccount> task = GoogleSignIn.getSignedInAccountFromIntent(data);
handleSignInResult(task);
}
}


private void handleSignInResult(Task<GoogleSignInAccount> completedTask) {
try {
GoogleSignInAccount account = completedTask.getResult(ApiException.class);

// Signed in successfully, show authenticated UI.
if (account != null)
{
mPasswordView.setVisibility(View.GONE);
mPasswordView.setVisibility(View.GONE);
}
updateUI(account);
} catch (ApiException e) {
e.printStackTrace();
// The ApiException status code indicates the detailed failure reason.
// Please refer to the GoogleSignInStatusCodes class reference for more information.
Log.w(TAG, "signInResult:failed code=" + e.getStatusCode());
lib.ShowMessage(getContext(), getString(R.string.googleloginnotsuccessfull) + "n" + getString(R.string.ErrorCode) + GoogleSignInStatusCodes.getStatusCodeString(e.getStatusCode()) + ":" + e.getStatusCode(), getString(R.string.Error));
updateUI(null);
}
}









share|improve this question
















I am getting this error after selecting a google account. OnActivityResult is called, but after evaluating the result this error is thrown. The cause is not a wrong SHA1, I am using the same key for release and debug. The app is not from Google Play. I am not using firebase. The google signin sample works with the same key.



com.google.android.gms.common.api.ApiException: 12500:



Stacktrace:



W/System.err: com.google.android.gms.common.api.ApiException: 12500: 
W/System.err: at com.google.android.gms.common.internal.ApiExceptionUtil.fromStatus(Unknown Source)
W/System.err: at com.google.android.gms.auth.api.signin.GoogleSignIn.getSignedInAccountFromIntent(Unknown Source)
W/System.err: at de.org.limindo.limindo2.fragLogin.onActivityResult(fragLogin.java:412)
W/System.err: at android.support.v4.app.FragmentActivity.onActivityResult(FragmentActivity.java:151)
W/System.err: at de.org.limindo.limindo2.MainActivity.onActivityResult(MainActivity.java:788)
W/System.err: at android.app.Activity.dispatchActivityResult(Activity.java:5456)
W/System.err: at android.app.ActivityThread.deliverResults(ActivityThread.java:3549)
W/System.err: at android.app.ActivityThread.handleSendResult(ActivityThread.java:3596)
W/System.err: at android.app.ActivityThread.access$1300(ActivityThread.java:151)
W/System.err: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1369)
W/System.err: at android.os.Handler.dispatchMessage(Handler.java:110)
W/System.err: at android.os.Looper.loop(Looper.java:193)
W/System.err: at android.app.ActivityThread.main(ActivityThread.java:5299)
W/System.err: at java.lang.reflect.Method.invokeNative(Native Method)
W/System.err: at java.lang.reflect.Method.invoke(Method.java:515)
W/System.err: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:825)
W/System.err: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:641)
W/System.err: at dalvik.system.NativeStart.main(Native Method)


The code is:



           GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestEmail()
.build();
mGoogleSignInClient = GoogleSignIn.getClient(fragLogin.this._main, gso);


mSignInGoogle0.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View view)
{
Intent signInIntent = mGoogleSignInClient.getSignInIntent();
startActivityForResult(signInIntent, RC_SIGN_IN);

}
});

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);

// Result returned from launching the Intent from GoogleSignInClient.getSignInIntent(...);
if (requestCode == RC_SIGN_IN) {
// The Task returned from this call is always completed, no need to attach
// a listener.
Task<GoogleSignInAccount> task = GoogleSignIn.getSignedInAccountFromIntent(data);
handleSignInResult(task);
}
}


private void handleSignInResult(Task<GoogleSignInAccount> completedTask) {
try {
GoogleSignInAccount account = completedTask.getResult(ApiException.class);

// Signed in successfully, show authenticated UI.
if (account != null)
{
mPasswordView.setVisibility(View.GONE);
mPasswordView.setVisibility(View.GONE);
}
updateUI(account);
} catch (ApiException e) {
e.printStackTrace();
// The ApiException status code indicates the detailed failure reason.
// Please refer to the GoogleSignInStatusCodes class reference for more information.
Log.w(TAG, "signInResult:failed code=" + e.getStatusCode());
lib.ShowMessage(getContext(), getString(R.string.googleloginnotsuccessfull) + "n" + getString(R.string.ErrorCode) + GoogleSignInStatusCodes.getStatusCodeString(e.getStatusCode()) + ":" + e.getStatusCode(), getString(R.string.Error));
updateUI(null);
}
}






java android google-signin






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 16 '18 at 21:43







Hans-Martin Goebel

















asked Nov 13 '18 at 18:11









Hans-Martin GoebelHans-Martin Goebel

14519




14519













  • have you setup project in developer console and enabled relative apis?

    – Karan Mer
    Nov 14 '18 at 10:25











  • You mean api console?

    – Hans-Martin Goebel
    Nov 14 '18 at 11:19











  • How do I enable relative apis? I have this project in api console, but I don't find relative apis......

    – Hans-Martin Goebel
    Nov 14 '18 at 11:34











  • check this developers.google.com/identity/sign-in/android/…

    – Karan Mer
    Nov 14 '18 at 11:35











  • I used exactly this page for setting up my project... But it doesn't work!

    – Hans-Martin Goebel
    Nov 14 '18 at 16:13



















  • have you setup project in developer console and enabled relative apis?

    – Karan Mer
    Nov 14 '18 at 10:25











  • You mean api console?

    – Hans-Martin Goebel
    Nov 14 '18 at 11:19











  • How do I enable relative apis? I have this project in api console, but I don't find relative apis......

    – Hans-Martin Goebel
    Nov 14 '18 at 11:34











  • check this developers.google.com/identity/sign-in/android/…

    – Karan Mer
    Nov 14 '18 at 11:35











  • I used exactly this page for setting up my project... But it doesn't work!

    – Hans-Martin Goebel
    Nov 14 '18 at 16:13

















have you setup project in developer console and enabled relative apis?

– Karan Mer
Nov 14 '18 at 10:25





have you setup project in developer console and enabled relative apis?

– Karan Mer
Nov 14 '18 at 10:25













You mean api console?

– Hans-Martin Goebel
Nov 14 '18 at 11:19





You mean api console?

– Hans-Martin Goebel
Nov 14 '18 at 11:19













How do I enable relative apis? I have this project in api console, but I don't find relative apis......

– Hans-Martin Goebel
Nov 14 '18 at 11:34





How do I enable relative apis? I have this project in api console, but I don't find relative apis......

– Hans-Martin Goebel
Nov 14 '18 at 11:34













check this developers.google.com/identity/sign-in/android/…

– Karan Mer
Nov 14 '18 at 11:35





check this developers.google.com/identity/sign-in/android/…

– Karan Mer
Nov 14 '18 at 11:35













I used exactly this page for setting up my project... But it doesn't work!

– Hans-Martin Goebel
Nov 14 '18 at 16:13





I used exactly this page for setting up my project... But it doesn't work!

– Hans-Martin Goebel
Nov 14 '18 at 16:13












2 Answers
2






active

oldest

votes


















1














In case this helps anybody: I was in this situation, except that it worked initially then stopped working later. I finally realized that it was because I switched laptops.






share|improve this answer
























  • As for why it took me so long to realize this: I just never re-used the login feature until months after changing laptops.

    – PhoenixB
    Nov 22 '18 at 6:21



















0














The solution is the package name: The package name of the manifest is de.org.limindo.limindo2 but the package of the apk is de.org.limindo2 ..... It seems that gradle shortens package names, if they contain double entries….






share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53287131%2fgoogle-sign-in-error-12500-sha1-double-checked-googlesigninaccount-account-com%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    In case this helps anybody: I was in this situation, except that it worked initially then stopped working later. I finally realized that it was because I switched laptops.






    share|improve this answer
























    • As for why it took me so long to realize this: I just never re-used the login feature until months after changing laptops.

      – PhoenixB
      Nov 22 '18 at 6:21
















    1














    In case this helps anybody: I was in this situation, except that it worked initially then stopped working later. I finally realized that it was because I switched laptops.






    share|improve this answer
























    • As for why it took me so long to realize this: I just never re-used the login feature until months after changing laptops.

      – PhoenixB
      Nov 22 '18 at 6:21














    1












    1








    1







    In case this helps anybody: I was in this situation, except that it worked initially then stopped working later. I finally realized that it was because I switched laptops.






    share|improve this answer













    In case this helps anybody: I was in this situation, except that it worked initially then stopped working later. I finally realized that it was because I switched laptops.







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Nov 22 '18 at 6:20









    PhoenixBPhoenixB

    14118




    14118













    • As for why it took me so long to realize this: I just never re-used the login feature until months after changing laptops.

      – PhoenixB
      Nov 22 '18 at 6:21



















    • As for why it took me so long to realize this: I just never re-used the login feature until months after changing laptops.

      – PhoenixB
      Nov 22 '18 at 6:21

















    As for why it took me so long to realize this: I just never re-used the login feature until months after changing laptops.

    – PhoenixB
    Nov 22 '18 at 6:21





    As for why it took me so long to realize this: I just never re-used the login feature until months after changing laptops.

    – PhoenixB
    Nov 22 '18 at 6:21













    0














    The solution is the package name: The package name of the manifest is de.org.limindo.limindo2 but the package of the apk is de.org.limindo2 ..... It seems that gradle shortens package names, if they contain double entries….






    share|improve this answer




























      0














      The solution is the package name: The package name of the manifest is de.org.limindo.limindo2 but the package of the apk is de.org.limindo2 ..... It seems that gradle shortens package names, if they contain double entries….






      share|improve this answer


























        0












        0








        0







        The solution is the package name: The package name of the manifest is de.org.limindo.limindo2 but the package of the apk is de.org.limindo2 ..... It seems that gradle shortens package names, if they contain double entries….






        share|improve this answer













        The solution is the package name: The package name of the manifest is de.org.limindo.limindo2 but the package of the apk is de.org.limindo2 ..... It seems that gradle shortens package names, if they contain double entries….







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 21 '18 at 19:40









        Hans-Martin GoebelHans-Martin Goebel

        14519




        14519






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53287131%2fgoogle-sign-in-error-12500-sha1-double-checked-googlesigninaccount-account-com%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

            ComboBox Display Member on multiple fields

            Is it possible to collect Nectar points via Trainline?