Erreur .NET pour Android XA1036
error XA1036: AndroidManifest.xml //uses-sdk/@android:minSdkVersion '29' does not match the $(SupportedOSPlatformVersion) value '21' in the project file (if there is no $(SupportedOSPlatformVersion) value in the project file, then a default value has been assumed).
Either change the value in the AndroidManifest.xml to match the $(SupportedOSPlatformVersion) value, or remove the value in the AndroidManifest.xml (and add a $(SupportedOSPlatformVersion) value to the project file if it doesn't already exist).
Cette erreur indique que vous avez une incompatibilité entre l’élément minSdkVersion défini dans votre AndroidManifest.xml et la valeur de propriété $(SupportedOSPlatformVersion) dans votre fichier projet.
Augmentez la valeur de //uses-sdk/@android:minSdkVersion
AndroidManifest.xml pour qu’elle corresponde à $(SupportedOSPlatformVersion), ou supprimez //uses-sdk/@android:minSdkVersion
de AndroidManifest.xml et définissez $(SupportedOSPlatformVersion) dans votre fichier projet s’il n’est pas défini.