Using the mapboxNavigation requestRoutes with the following options code. Getting a Failure callback complaining No suitable edges near location. The same points array used in Postman calling the Direction API returns successfully.
RouteOptions.Builder builder=RouteOptions.builder();
builder
.accessToken(getString(R.string.mapbox_access_token))
.profile(RouteUrl.PROFILE_DRIVING)
.language("en")
.user("mapbox")
.requestUuid(""+UUID.randomUUID())
.alternatives(true)
.geometries("geojson")
.steps(true)
.baseUrl("https://api.mapbox.com/directions/v5/mapbox/")
.coordinates(ptsList);