Log cat gives:
- Code: Select all
07-31 12:24:19.659: ERROR/ActivityThread(732): Failed to find provider info for com.google.settings
07-31 12:24:20.879: INFO/MapActivity(732): Handling network change notification:CONNECTED
07-31 12:24:20.889: ERROR/MapActivity(732): Couldn't get connection factory client
07-31 12:24:21.489: DEBUG/dalvikvm(732): GC freed 3555 objects / 205032 bytes in 97ms
07-31 12:24:23.028: WARN/ActivityManager(581): Launch timeout has expired, giving up wake lock!
I have manfiest set up with the permissions and uses-library:
- Code: Select all
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
- Code: Select all
<uses-library android:name="com.google.android.maps" />
I have my apikey set in the layout xml file.
My code right now is stripped down about as bare as it can get:
- Code: Select all
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// load the user interface
setContentView(R.layout.trails_list_map);
// connect to widgets and views on the UI
initMap();
}
@Override
protected boolean isRouteDisplayed() {
return false;
}
private void initMap() {
mMapView = (MapView) findViewById(R.id.mapview);
ZoomControls zc = (ZoomControls) mMapView.getZoomControls();
LinearLayout zoomLayout = (LinearLayout) findViewById(R.id.zoomview);
zoomLayout.addView(zc);
mMapView.displayZoomControls(true);
mMapView.setEnabled(true);
}
I swear this worked last night so I have no idea why it won't work today. I have another app that uses a map view and the same api key and it is working fine so I'm certain it's not an api key issue.
Any ideas?

