Android Google Maps V2 Tutorial

Step: 1 ====== 1) Generate a Google Maps API Key using this URL. 1.1) To generate a debug SHA1 key for testing apps for development use below command in windows command prompt. keytool -list -v -keystore "C:\Users\pratap.kesaboyina\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android 1.2) To generate a release SHA1 key for production usage( when releasing your app to google play store, debug key will not work. You need a release SHA1 Key) keytool -list -v -keystore "C:\AndroidFiles\AppKeyStore.jks" -alias "Your App Alias Name" 1.3) Go ahead and add Maps Api Key in the manifest file and also add Permissions in the manifest File. <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android= "http://schemas.android.com/apk/res/android" package= "com.pratap.mapssample" > <uses-feature android:glEsVersion= "0x00020000" android:required= ...