We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c83eb05 commit 487deadCopy full SHA for 487dead
1 file changed
Projects/Playground/Playground.Forms.Droid/SplashScreen.cs
@@ -4,6 +4,7 @@
4
5
using Android.App;
6
using Android.Content.PM;
7
+using Android.OS;
8
using MvvmCross.Core;
9
using MvvmCross.Platforms.Android.Views;
10
@@ -25,10 +26,10 @@ public SplashScreen()
25
26
this.RegisterSetupType<Setup>();
27
}
28
- protected override void TriggerFirstNavigate()
29
+ protected override void RunAppStart(Bundle bundle)
30
{
31
StartActivity(typeof(MainActivity));
- base.TriggerFirstNavigate();
32
+ base.RunAppStart(bundle);
33
34
35
0 commit comments