Skip to content

Commit 487dead

Browse files
committed
Playground.Forms.Droid SplashScreen: Use RunAppStart method
1 parent c83eb05 commit 487dead

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Projects/Playground/Playground.Forms.Droid/SplashScreen.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
using Android.App;
66
using Android.Content.PM;
7+
using Android.OS;
78
using MvvmCross.Core;
89
using MvvmCross.Platforms.Android.Views;
910

@@ -25,10 +26,10 @@ public SplashScreen()
2526
this.RegisterSetupType<Setup>();
2627
}
2728

28-
protected override void TriggerFirstNavigate()
29+
protected override void RunAppStart(Bundle bundle)
2930
{
3031
StartActivity(typeof(MainActivity));
31-
base.TriggerFirstNavigate();
32+
base.RunAppStart(bundle);
3233
}
3334
}
3435
}

0 commit comments

Comments
 (0)