Possible Duplicate:
Couldn't get connection factory client - fighting with Google Maps
I have a problem with a mapview. I've created a new keystore for my app and gets an correct key of google maps api and my app is signed with my keystore. But the mapview, not works. I am reading many post about it, but i can't solve it
i have some errors:
07-20 18:16:49.066: I/MapActivity(9106): Handling network change notification:CONNECTED
07-20 18:16:49.066: E/MapActivity(9106): Couldn't get connection factory client
07-20 18:16:49.276: W/System.err(9106): IOException processing: 26
07-20 18:16:49.286: W/System.err(9106): java.io.IOException: Server returned: 3
07-20 18:16:49.296: W/System.err(9106): at android_maps_conflict_avoidance.com.google.googlenav.map.BaseTileRequest.readResponseData(BaseTileRequest.java:115)
07-20 18:16:49.296: W/System.err(9106): at android_maps_conflict_avoidance.com.google.googlenav.map.MapService$MapTileRequest.readResponseData(MapService.java:1473)
07-20 18:16:49.296: W/System.err(9106): at android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher.processDataRequest(DataRequestDispatcher.java:1117)
07-20 18:16:49.296: W/System.err(9106): at android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher.serviceRequests(DataRequestDispatcher.java:994)
07-20 18:16:49.296: W/System.err(9106): at android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher$DispatcherServer.run(DataRequestDispatcher.java:1702)
07-20 18:16:49.296: W/System.err(9106): at java.lang.Thread.run(Thread.java:856)
Other times appears the same error but not appears the follow line:
Couldn't get connection factory client 07-20 18:16:49.276:
My mapview.xml:
<com.google.android.maps.MapView
android:id="@+id/mapa"
style="@style/mapView"
android:layout_width="fill_parent"
android:layout_height="200dip"
android:apiKey="@string/apikey"
android:clickable="true" >
</com.google.android.maps.MapView>
manifiest
..............................
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
>
<uses-library android:name="com.google.android.maps" />
..............................
I'm going crazy looking for the solution, assistance would be greatly appreciated!
thanks in advance!