Play 商店版本错误此版本将导致您的应用程序支持的设备数量大幅下降

问题描述 投票:0回答:1

我在尝试在 Google Play 商店上发布我的毛伊岛 Android 应用程序时遇到此错误 =“此版本将导致您的应用程序支持的以下外形尺寸的设备数量显着下降”

x

我尝试更新 API 版本: android:minSdkVersion="21" android:targetSdkVersion="33" 但没有任何作用

android xamarin google-play maui
1个回答
0
投票

发行说明中所述,Android 现在默认仅构建 64 位架构。

如果您仍然想支持其他架构(因此不会丢失许多支持的设备),您可以通过将其添加到您的 csproj 文件来再次重新启用 32 位架构:

<RuntimeIdentifiers Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
© www.soinside.com 2019 - 2024. All rights reserved.