My Problemproblem is the same as iI have also shifted my google mapsGoogle Maps project from Eclipse to Android Studio. I have solved my problem by following this:-
Go to your javaJava bin directory via the cmdcommand:
C:\Program Files\Java\jdk1.7.0_71\bin> Now type in the below command in your cmdcommand window (CMD.EXE):
keytool -list -v -keystore c:\users\your_user_name\.android\debug.keystore -alias androiddebugkey -storepass android -keypass android exampleExample:
keytool -list -v -keystore c:\users\James\.android\debug.keystore -alias androiddebugkey -storepass android -keypass android orOr you can just write this in cmd if you dontdon't know the username:
keytool -list -v -keystore "%USERPROFILE%\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android andAnd you will get the SHA1.
then iThen I created a new key from https://code.google.com/apis/console because of my package name got changed and then use this key in my application. It works fine.
makeMake sure you are in BIN folder of jdkX.X.X_XX (minemy folder name is jdk1.7.0_71) , or else if you dontdon't know what folder name you have then find it by opening javathe Java folder, and you will see what the folder name is, but you must be in your BIN folder and then run this command , today i. Today I have got my SHA1 value in a cmd command window by the above procedure.
SNAPSHOT:

