I am planning to upload my first app on PlayStore and it uses Google Maps V2 and Facebook SDK. So far, I have used the tutorials on AndroidHive and mostly followed the steps blindly.
Google Maps and Faceboook both require me to generate a keyhash and a keycert. I generated my key cert as:
keytool -exportcert -alias androiddebugkey -keystore "%USERPROFILE%\.android\debug.keystore" | openssl sha1 -binary | openssl base64 > Desktop/SSL.txt
Now, to release an app I will create a new keystore using Eclipse's EXPORT
wizard.
After creating a new keystore, will I have to generate new keys for Google Maps and Facebook by pointing to the newly generated keystore?
Tutorial for Facebook SDK: http://www.androidhive.info/2012/03/android-facebook-connect-tutorial/
Tutorial for Google Map V2: http://www.androidhive.info/2013/08/android-working-with-google-maps-v2/