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