20 lines
496 B
C#
20 lines
496 B
C#
using Android.App;
|
|
using Android.Content;
|
|
using AndroidX.AppCompat.App;
|
|
|
|
namespace Payesh.App.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)));
|
|
}
|
|
}
|
|
}
|