Hi folks,
I am using 2 map Activities. do i want to register multiple Map APi key for each? Now I am getting this exception:
06-16 18:49:41.498: INFO/MapActivity(11067): Handling network change notification:CONNECTED
06-16 18:49:41.498: ERROR/MapActivity(11067): Couldn't get connection factory client
I googled about this exception. It concludes that must be a API Key Problem? Is that true? Why it happens?
Thanks
This is my code for mapview tag:
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/mapview_id"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:clickable="true" android:apiKey="my_api_key" />
i got this exception while creating the object for the mapview iteself. That is:
MapView mv=(MapView)findViewById(R.id.mapview_id);
Can you Guess? Why?