Adding an Android Application class
using Android.App;
using Android.Content.PM;
using MvvmCross.Core;
using MvvmCross.Platforms.Android.Core;
using MvvmCross.Platforms.Android.Views;
namespace MvvmCrossDemo.Droid
{
[Activity(
Label = "MvvmCrossDemo.Droid"
, MainLauncher = true
, NoHistory = true
, ScreenOrientation = ScreenOrientation.Portrait)]
public class SplashScreen : MvxSplashScreenActivity<MvxAndroidSetup<Core.App>, Core.App>
{
public SplashScreen()
: base(Resource.Layout.SplashScreen)
{
}
}
} Last updated