当我调用下面的方法时,我的应用程序崩溃了。在我的physicsBody
中,pplication有权访问wifi状态。
if (Request.Files["Photo"] != null)
{
string path = "/uploads/" + DateTime.Now.Ticks.ToString() + "_" + Request.Files["Photo"].FileName;
Request.Files["Photo"].SaveAs(Server.MapPath(path));
SP.PhotoPath = path;
//The MapPath method maps the specified relative or virtual path to the
//corresponding physical directory on the server.
}
这是错误:
AndroidManifest.xml
请建议一种解决此错误的方法。提前谢谢。
答案 0 :(得分:0)
您是否正在测试上述版本的棒棒糖?您必须在show()方法的代码中明确请求权限。
或查看此链接可能会对您有所帮助..