当前位置: 首页 > 知识库问答 >
问题:

Xamarin Forms oncreate bundle null reference error

薛飞星
2023-03-14

我有一个简单的Xamarin表单应用程序,但它说bundle在创建时为null。

第行:global::Xamarin.Forms.Forms。Init(这个,bundle);

完整错误:

系统。IO.FileNotFoundException:无法加载文件或程序集的系统。“Runtime,Version=4.0.0.0,Culture=neutral,public key token = b 03 F5 f 7 f 11d 50 a 3 a”或其依赖项之一。

    protected override void OnCreate(Bundle bundle)
    {
        TabLayoutResource = Resource.Layout.Tabbar;
        ToolbarResource = Resource.Layout.Toolbar;

        base.OnCreate(bundle);

        global::Xamarin.Forms.Forms.Init(this, bundle);
        LoadApplication(new App());

        EMDKResults results = EMDKManager.GetEMDKManager(Android.App.Application.Context, this);

        AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;

    }

几小时前还能用。我看不出有什么变化会导致这种情况。我应该如何发现问题?

共有1个答案

张茂勋
2023-03-14

我简直不敢相信!

不知何故,我检查了仅从无到SDK程序集的“链接”。这是错误的。我将其检查为无,它再次工作!

 类似资料:

相关问答

相关文章

相关阅读