Xamarin.Android应用程序子类崩溃

时间:2018-01-03 13:22:55

标签: android xamarin.android visual-studio-2017

我是Xamarin的新手。我正在尝试创建应用程序类,如下面的代码

[Application] 
class MyCustomApplicationClass : Application 
{ 
        public MyCustomApplicationClass (IntPtr handle, JniHandleOwnership ownerShip) : base (handle, ownerShip) 
        { 
        } 

        public override void OnCreate () 
        { 
                base.OnCreate(); 
                // add your custom stuff e.g. here... 
        } 
} 

它没有MyCustomApplicationClass应用程序运行完全正常崩溃的应用程序。

编辑: -

Bug here 提前致谢

1 个答案:

答案 0 :(得分:0)

该错误通常是由于支持库与使用的Android sdk版本之间存在冲突。 检查版本是否相同(所有25.x,或所有26.x,...),还原包,清理所有内容并启动。