英語で読む

次の方法で共有


Android 用 .NET エラー XA1036

Example messages (メッセージの例)

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).

問題点

このエラーは、AndroidManifest.xmlで設定された minSdkVersion 要素と、プロジェクト ファイルの $(SupportedOSPlatformVersion) プロパティ値が一致していないことを示します。

解決策

AndroidManifest.xml//uses-sdk/@android:minSdkVersionの値を $(SupportedOSPlatformVersion) と一致するように値を上げるか、AndroidManifest.xmlから//uses-sdk/@android:minSdkVersionを削除し、未設定の場合はプロジェクト ファイルに $(SupportedOSPlatformVersion) を設定します。