我无法在 Visual Studio 2019 中的 Android 模拟器上运行应用

我无法在 Visual Studio 2019 中的 Android 模拟器上运行应用

更新 Visual Studio 2019 后,我无法再在 Xamarin Android 模拟器上运行应用程序;在调试期间,应用程序将显示以下错误消息:

Deployment failed

There is not enough storage space on the device to store package

截屏

我该如何修复此问题并让我的应用程序再次在 Android 模拟器中运行?

答案1

从: 故障排除提示 - Xamarin Microsoft 页面

如果您没有从 Visual Studio 内部启动模拟器,则会发生这种情况。在 Visual Studio 外部启动模拟器时,您需要传递 -partition-size 512 选项,例如

shell

emulator -partition-size 512 -avd MonoDroid

确保使用正确的模拟器名称,即配置模拟器时使用的名称

相关内容