1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-26 03:42:57 +02:00
bitwarden-mobile/src/iOS/Main.cs

14 lines
280 B
C#
Raw Normal View History

2019-03-28 20:43:50 +01:00
using UIKit;
2019-03-28 01:12:44 +01:00
namespace Bit.iOS
{
public class Application
{
static void Main(string[] args)
{
2019-03-28 20:43:50 +01:00
ObjCRuntime.Dlfcn.dlopen(ObjCRuntime.Constants.libSystemLibrary, 0);
2019-03-28 01:12:44 +01:00
UIApplication.Main(args, null, "AppDelegate");
}
}
}