Error de .NET para Android XA4216
error XA4216: The deployment target '19' is not supported (the minimum is '21'). Please increase the $(SupportedOSPlatformVersion) property value in your project file.
error XA4216: The deployment target '19' is not supported (the minimum is '21'). Please increase (or remove) the //uses-sdk/@android:minSdkVersion value in your AndroidManifest.xml.
warning XA4216: AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '19' is less than API-21, this configuration is not supported.
Este error o advertencia indica que la aplicación tiene como destino un nivel de API no compatible.
Edite el csproj y aumente el valor de la propiedad '$(SupportedOSPlatformVersion)' a algo mayor o igual que la versión mínima admitida.
o
Edite el AndroidManifest.xml y quite //uses-sdk/@android:minSdkVersion
o aumente a algo mayor o igual que la versión mínima admitida.
o
Edite el AndroidManifest.xml y quite //uses-sdk/@android:targetSdkVersion
o aumente a algo mayor o igual que la versión mínima admitida.