mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
33 lines
638 B
C#
33 lines
638 B
C#
|
using System;
|
|||
|
using Xamarin.Forms;
|
|||
|
using Xamarin.Forms.Xaml;
|
|||
|
|
|||
|
[assembly: XamlCompilation(XamlCompilationOptions.Compile)]
|
|||
|
namespace Bit.App
|
|||
|
{
|
|||
|
public partial class App : Application
|
|||
|
{
|
|||
|
public App()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
|
|||
|
MainPage = new MainPage();
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnStart()
|
|||
|
{
|
|||
|
// Handle when your app starts
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnSleep()
|
|||
|
{
|
|||
|
// Handle when your app sleeps
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnResume()
|
|||
|
{
|
|||
|
// Handle when your app resumes
|
|||
|
}
|
|||
|
}
|
|||
|
}
|