I am trying to generate a signed key for the Spotify Api.I am having a little trouble understanding a few small things.
In there instructions:
https://developer.spotify.com/technologies/spotify-android-sdk/tutorial/
It has:
keytool -exportcert -alias <RELEASE_KEY_ALIAS> -keystore <RELEASE_KEYSTORE_PATH> -list -v | grep SHA1
So I have found the keytool and got that to run but I am getting an unauthorised error.
I had it as:
keytool -exportcert -alias <my_key_alias> -keystore <C:\Users\MyComputer\AndroidStudioProjects\KeyStore> -list -v | grep SHA1
I want to confirm exactly what I need to do.
Is RELEASE_KEYSTORE_PATH the directory or the actual name of a file?
And I assume in the way the have syntaxed RELEASE_KEYSTORE they are using an environment variable not just a place holder?
Thanks for your help