Reputation: 149
I have added a google sing-in api into my xamarin.forms project. (I have done it according to this guide). And it works well, but there is another PC with this project, and SHA1 debug key on that PC is different from the key on my PC. So a google sign-in does not work on the second PC. How can I make it works on both PCs?
Upvotes: 0
Views: 148
Reputation: 12179
I guess the easiest way will be to use the same keystore on both machines.
The guide you shared contains a detailed information on how to generate a keystore. Alternatively you can read this official guide.
Once it is generated you will have to use this keystore to sign your apk.
P.S.: If you are completely new to Android I would highly recommend to get familiar with the signing concept and the official Android guide is the best place for this.
Upvotes: 1