tags:

views:

58

answers:

1

Hi guys,

I am developing application with Google Map.

I've tested on the emulator and saw error line In the log:

01-23 16:04:28.453: ERROR/MapActivity(733): Couldn't get connection factory client

But it worked fine on the emulator.

Then I've signed the application and created its .apk file. I've put it on the web server downloaded and installed it on the real device (it is HTC with Verizon).

But my application didn't appear google maps on the device. I've checked API key and other configuration. Everything was ok. But google maps didn't work.

Have you faced to problem same as mine ?

Please suggest.

Thanks in advance.

+1  A: 

Sounds like the maps API key you are using is not associated with the certificate you are signing the application with.

You will typically need to register for two maps API keys - one associated with the debug certificate that automatically signs each build that you deploy to the emulator during development, and another associated with your production certificate that you sign your APK with prior to publishing on the market.

http://code.google.com/android/add-ons/google-apis/mapkey.html

Jeff Gilfelt