0
私はシンプルなXamarin Formsアプリケーションを持っていますが、bundleはnullであると言います。Xamarin Forms oncreate bundle null参照エラー
行: グローバル:: Xamarin.Forms.Forms.Init(this、bundle);
フルエラー:
System.IO.FileNotFoundException:ファイルまたはアセンブリ 'System.Runtime、バージョン= 4.0.0.0、文化はニュートラル、PublicKeyToken = = b03f5f7f11d50a3a' またはその依存関係の1つをロードできませんでした。
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;
}
数時間前に機能しました。これを引き起こす可能性のある変更はありません。問題をどのように見つけるべきですか?
ソリューションをクリーンアップしてゼロから再コンパイルしましたか?また、コンピュータを再起動しようとしましたか? – Gusman
私はそれらを試みましたが、私は最後にエラーを見つけました。あなたは "答え"を見ることができます.... – cejufucu