英文:
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.
答案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>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论