在.NET MAUI项目的项目设置中如何选择大于Android 33的版本。

huangapple go评论100阅读模式
英文:

How can i select more than Android 33 in the project settings in a .NET MAUI project

问题

如何在.NET MAUI项目的Android目标设置中查看并选择所有已安装的版本?我已安装了多个版本,但只能选择第33版。

英文:

how can I view and select all installed versions in Android target settings in a .NET MAUI project? I have multiple versions installed but can only select the 33.

在.NET MAUI项目的项目设置中如何选择大于Android 33的版本。

答案1

得分: 0

根据Julian的建议,只有在你想要针对特定版本(例如Android 13.0)进行目标设置时,才需要使用这个目标Android设置设置。

如果你想要针对所有Android版本进行目标设置,你应该在你的.csproj文件中添加net7.0-android,如下所示:

<TargetFrameworks> net7.0-android;</TargetFrameworks>
英文:

As Julian suggested, you will only need use this Target Android Setting setting on condition that you want to target a specific or particular version(e.g. Android 13.0).

If you want to target all Android versions, you should add the net7.0-android in your .csproj file like below:

<TargetFrameworks> net7.0-android;</TargetFrameworks>

huangapple
  • 本文由 发表于 2023年5月21日 17:11:19
  • 转载请务必保留本文链接:https://go.coder-hub.com/76299119.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定