1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-15 23:13:25 +00:00

action extension project

This commit is contained in:
Kyle Spearrin
2019-06-26 20:28:23 -04:00
parent a158021f46
commit 79746efa2d
33 changed files with 725 additions and 23 deletions

View File

@@ -0,0 +1,30 @@
using Foundation;
using UIKit;
namespace Bit.iOS.Extension
{
[Register("AppDelegate")]
public partial class AppDelegate : UIApplicationDelegate
{
public override UIWindow Window
{
get; set;
}
public override void OnResignActivation(UIApplication application)
{
}
public override void DidEnterBackground(UIApplication application)
{
}
public override void WillEnterForeground(UIApplication application)
{
}
public override void WillTerminate(UIApplication application)
{
}
}
}