bitwarden-android/src/iOS/Main.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
280 B
C#
Raw Normal View History

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