Showing posts with label unveil. Show all posts
Showing posts with label unveil. Show all posts

Tuesday, December 6, 2016

Google to Unveil Service to Let Users Stream Their Music

Google will announce today on Google I/O 2011 its long anticipated Cloud-based music service.
Read More..

Tuesday, October 11, 2016

Obtain Google Maps API key


Step 1: Locate debug.keystore on your system. It is usually in the USER_HOMELocal SettingsApplication Data.androidfolder on windows.


Step 2: Use the keytool utility to generate certificate fingerprint (MD5). keytool utility that comes with the default JDK installation.


C:>keytool -list -alias androiddebugkey -keystore .androiddebug.keystore -storepass android -keypass android


It will getnerate a certificate fingerprint (MD5) in this format:


Certificate fingerprint (MD5): XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX


Step 3: Go to the page for obtaining the Maps API Key. Put your Certificate fingerprint (MD5) And get your API key for android Google Map application. On this page, paste the certificate fingerprint in the appropriate form field, and click the “Generate API Key” button. This will return a Maps API key string. 


The key can be used in the Maps Application by pasting it in the MapView element in the XML layout file where appropriate.

Read More..