this is the path to the keystore in visual studio for mac
when the keytool is excuted it says it can not find the file.
I am lost baffled and confused. Any help would be most appreciated. I am trying to get SHA-1 fingerprint
this is the path to the keystore in visual studio for mac
when the keytool is excuted it says it can not find the file.
I am lost baffled and confused. Any help would be most appreciated. I am trying to get SHA-1 fingerprint
First of all, you can check the official document about the For Debug / Non-Custom Signed Builds and use the following command to test the debug.keystore.
$ keytool -list -v -keystore ~/.local/share/Xamarin/Mono\ for\ Android/debug.keystore -alias androiddebugkey -storepass android -keypass android
And then you can read the official document about the For Release / Custom Signed Builds and use the release keystore's path to do that.
Finnally, you can refer to this case which had the same error about Keystore file doesn't exist in the mac. You can try the accepted answer or the others in it.