using Android.App; using Android.Content.PM; using Cirrious.MvvmCross.Droid.Views; namespace $rootnamespace$ { [Activity( Label = "$rootnamespace$" , MainLauncher = true , Icon = "@drawable/icon" , Theme = "@style/Theme.Splash" , NoHistory = true , ScreenOrientation = ScreenOrientation.Portrait)] public class SplashScreen : MvxSplashScreenActivity { public SplashScreen() : base(Resource.Layout.SplashScreen) { } } }