Possible Duplicate:
Google map signed api key errors in Android
I've really tried every possible solution I could find.. I'm close to pulling out all my hair doing something I've done a million times before, but it's just not working, whatever I try! I get the following log when running an exported .apk on a device:
10-23 16:39:31.504: W/System.err(14068): IOException processing: 26
10-23 16:39:31.504: W/System.err(14068): java.io.IOException: Server returned: 3
10-23 16:39:31.504: W/System.err(14068): at android_maps_conflict_avoidance.com.google.googlenav.map.BaseTileRequest.readResponseData(BaseTileRequest.java:115)
10-23 16:39:31.504: W/System.err(14068): at android_maps_conflict_avoidance.com.google.googlenav.map.MapService$MapTileRequest.readResponseData(MapService.java:1473)
10-23 16:39:31.504: W/System.err(14068): at android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher.processDataRequest(DataRequestDispatcher.java:1117)
10-23 16:39:31.504: W/System.err(14068): at android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher.serviceRequests(DataRequestDispatcher.java:994)
10-23 16:39:31.504: W/System.err(14068): at android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher$DispatcherServer.run(DataRequestDispatcher.java:1702)
10-23 16:39:31.504: W/System.err(14068): at java.lang.Thread.run(Thread.java:1027)
I've done the following (as so many others):
- Created a new certificate (directly in the terminal and also from Eclipse)
- Generated MD5 and pasted into google api key web page (using both my own and an actual publishers google account, doesn't matter
- Used the api key for the map view in the layout xml file
- Setting debuggable = false
- including the lib inside the application tags
- Added all the necessary permissions
- Checked that the maps app work correctly
Everything works flawless when running in debug-mode, so what am I missing during the export? I choose the projekt, keystore file, enter password and save file. That's it! (That's what I've always done and it's always worked before)
Really, I've tried everything I've found, but I STILL get the error above! Now, from your experience: What possible setup can cause the error above so consistently?
Of course, it IS the keystore file/api key in some way, but what am I missing here?