Monotouch崩溃,没有例外

时间:2014-09-06 09:12:17

标签: exception crash xamarin.ios

我构建了一个monotouch应用程序,它在用户fnishes注册后随机崩溃问题是没有抛出异常,我试图在设备上测试时用调试器捕获它(当然我设置它来捕获所有异常我甚至试图设置像HockeyApp这样的崩溃工具,但那些崩溃不会出现在任何地方。

我该如何解决这个问题?请帮助!

1 个答案:

答案 0 :(得分:0)

你应该看看Raygun.io。它会将任何未处理的异常记录到仪表板。通过nuget包添加它,然后您可以在Main.cs中设置一行:

namespace Myapp.iOS
{
    public class Application
    {
        // This is the main entry point of the application.
        static void Main(string[] args)
        {
            Mindscape.Raygun4Net.RaygunClient.Attach("enter your api key here");

            UIApplication.Main(args, null, "AppDelegate");
        }
    }
}