What can I do to mitigate this server error on AGOL. There doesn't appear to be a way where I can set a spatial reference. Here's my boilerplate in OnCreate:
_myMapView = new MapView(Activity);
_myMapView.InteractionOptions = new MapViewInteractionOptions
{
IsMagnifierEnabled = false
};
Basemap bm = null;
bm = new Basemap(new Uri(Resources.GetText(Resource.String.uri_map_basemap)));
Debug.Assert(bm != null, "Shizen!! BaseMap is null!!");
_map = new Map(bm);
_map.LoadStatusChanged += OnMapsLoadStatusChanged;
_myMapView.Map = _map;
This works usually, but sometimes (varying percentage based on the weather I suppose) throws a rod:

Breakpoint is at the top of _map.Loaded handler.
VisualStudio 2019; EsriArcGISRuntime v 100.6, EsriArcGISRuntime.ToolKit v 100.4, EsriArcGISRuntime.Xamarin.Android v 100.6
I test on a Samsung Galaxy S8
Here's the connexn URI: USA_Topo_Maps (MapServer)