Example messages (メッセージの例)
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)' プロパティの値をサポートされている最小バージョン以上の値に増やします。
or
AndroidManifest.xml を編集して //uses-sdk/@android:minSdkVersionを削除するか、サポートされている最小バージョン以上に増やします。
or
AndroidManifest.xml を編集して //uses-sdk/@android:targetSdkVersionを削除するか、サポートされている最小バージョン以上に増やします。