We have tried this particular bug on many different devices.
Motorola Xoom HTC Thunderbolt Samsung Nexus S Samsung Tablet
All failed to load with the same error.
We refactored our code to be updated with the current Release. We were using the Alpha Release at first.
We also tried the sample project that has been posted on the ESRI site. We figured it might be us, so we should try a very simple example first.
My Activity:
public class GeotestActivity extends Activity { MapView map = null; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main);
// Retrieve the map and initial extent from XML layout map = (MapView)findViewById(R.id.map); // Add dynamic layer to MapView map.addLayer(new ArcGISDynamicMapServiceLayer("" + "http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer")); //Retrieve the non-configuration instance data that was previously returned. Object init = getLastNonConfigurationInstance(); if (init != null) { map.restoreState((String) init); } } protected void onPause() { super.onPause(); map.pause(); }