设想:
开始 MonoDevelop
新的安卓应用
将按钮单击委托替换为
string fullPath = "/data/misc.mvvmcross.customermanagement/files/_Caches/Pictures.MvvmCross/";
if (System.IO.Directory.Exists(fullPath))
{
button.Text = "exists";
}
else
{
button.Text = "not found";
Directory.CreateDirectory(fullPath);
}
运行并单击按钮。Directory.CreateDirectory 将失败
System.UnauthorizedAccessException
已尝试创建具有不同 API 级别的新模拟器映像,但问题仍然存在
有什么想法吗?
好的,已经创建了新的 Android 模拟器图像并使用了它。现在一切正常。
解决方案:为您想要的 API 级别创建一个新的 android 模拟器映像(不要忘记 Google API 支持)