mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
18 lines
468 B
C#
18 lines
468 B
C#
using Android.App;
|
|
using Android.Content;
|
|
using AndroidX.AppCompat.App;
|
|
|
|
namespace Borepin.Droid
|
|
{
|
|
[Activity(Theme = "@style/MainTheme.Splash", MainLauncher = true, NoHistory = true)]
|
|
public class SplashActivity : AppCompatActivity
|
|
{
|
|
// Launches the startup task
|
|
protected override void OnResume()
|
|
{
|
|
base.OnResume();
|
|
StartActivity(new Intent(Application.Context, typeof(MainActivity)));
|
|
}
|
|
}
|
|
}
|