Generating a Development Key Hash ~ Android Debug App Signing

Just in case anyone else has had a hard time figuring out this one, the password is: android

So when generating your development key from the debug keystore like this:

keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64

Make sure that when it asks you for a keystore password, type: android

For debug, you won’t need to add the Key to android in your unoproj as its automatically signed with the password android.

You will only need the Key for release when going to the play store:

    "Key": {
      "Alias": "application",
      "AliasPassword": "mypassword",
      "Store": "release.keystore",
      "StorePassword": "mypassword"
    }