When using the monoandroid10 framework, monoandroid10 Xamarin.Forms blocked for a specific version of Android support, but provided that you target the monoandroid70 / monoandroid71 , Xamarin.Forms 2.3.3.193 and higher are now blocked on minimun Only the Android support version.
Thus, this means Xamarin.Forms versions 2.3.3.193, 2.3.4.224, 2.3.4.231 and 2.3.5.233-pre1 (latest), you can use Android 23.3.0 and higher support for monoandroid70 +.
Note. Xamarin.Forms 2.3.3.193 and later also support the MonoAndroid10 structure, and when used in this structure, each version of Forms is still blocked for one version of Android support.
Note. In a future version of Forms, the minimum version of the support level will be increased when Android-based rendering requires new support functions.
As a quick online link, you can always see the Nuget dependencies for a specific version of the forms
Or take the jug nuget v3 package and use jq to analyze it for the Nuget dependency range (I used to automatically create / publish the version table, but with newer frameworks it is no longer needed)
curl -s https://api.nuget.org/v3/registration1-gz/xamarin.forms/page/2.3.3.193/2.3.5.233-pre1.json | gunzip | jq '.items | .[0] | .catalogEntry | .dependencyGroups | .[0] | .dependencies | .[0] | .range ' "[23.3.0, )"
source share