Problem with Amazon Game Circle Cookbook
I'm trying to follow the Game Circle cookbook here: http://help.gamesalad.com/gamesalad-cookbook/4-android-publishing/4-07-amazon-gamecircle/
It appears that some of the shortcodes used in production of that wordpress page are being displayed in the code highlight:
I am pretty sure anything in the brackets like [su_box title="Terminal"] is a wordpress shortcode and not to be used in the terminal command.
Also, Game Circle requires an MD5 checksum of the certificate used to sign the game but I am unable to find an MD5 Signature in my keystone using the instructions here - I just get an SHA1 signature. I am pretty sure I followed all the original instructions for creating the Keystore in the first place, but I will try again to see if I missed something.
Comments
Looks like someone already fixed the code highlights. Nice!
Oh wait- there is also some html still in there...
<<em> and </em>>
I'm looking at the keystores I have and the one I just created and they all have the MD5 line in them.
Try:
keytool -list -v -keystore whatever.keystore | grep MD5
and it should list out just the MD5 line you need.
Hmm... I followed the Creating A Keystore cookbook here: http://help.gamesalad.com/gamesalad-cookbook/4-android-publishing/4-02-creating-a-keystore/ and still was left with only an SHA1 checksum for the key. Can I just make an md5 sum of the key itself?
I also followed those exact instructions and my certificate fingerprints include MD5, SHA1, and SHA256.
What version of Java do you have installed? java -v will tell you. I am using 1.8.0_51-b16.
What is the full output from the keytool -list... command?
Thanks @GeorgeGS ! That did the trick. I REALLY appreciate the quick reply - and on a Sunday no less!
On OS X I needed to type java -version and got:
java version "1.8.0_25"
Java(TM) SE Runtime Environment (build 1.8.0_25-b17)
Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)