diff --git a/Projects/Playground/Playground.Forms.Droid/SplashScreen.cs b/Projects/Playground/Playground.Forms.Droid/SplashScreen.cs index 3084ba4e68..7a82074037 100644 --- a/Projects/Playground/Playground.Forms.Droid/SplashScreen.cs +++ b/Projects/Playground/Playground.Forms.Droid/SplashScreen.cs @@ -4,6 +4,7 @@ using Android.App; using Android.Content.PM; +using Android.OS; using MvvmCross.Core; using MvvmCross.Platforms.Android.Views; @@ -25,10 +26,10 @@ public SplashScreen() this.RegisterSetupType(); } - protected override void TriggerFirstNavigate() + protected override void RunAppStart(Bundle bundle) { StartActivity(typeof(MainActivity)); - base.TriggerFirstNavigate(); + base.RunAppStart(bundle); } } }