다음을 통해 공유


Android용 .NET 오류 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.

문제

이 오류 또는 경고는 애플리케이션이 지원되지 않는 API 수준을 대상으로 지정하고 있음을 나타냅니다.

솔루션

csproj를 편집하고 '$(SupportedOSPlatformVersion)' 속성 값을 지원되는 최소 버전보다 크거나 같은 값으로 늘립니다.

또는

AndroidManifest.xml 편집하고 제거 //uses-sdk/@android:minSdkVersion하거나 지원되는 최소 버전보다 크거나 같은 버전으로 늘립니다.

또는

AndroidManifest.xml 편집하고 제거 //uses-sdk/@android:targetSdkVersion하거나 지원되는 최소 버전보다 크거나 같은 버전으로 늘립니다.