mirror of
https://github.com/bitwarden/android.git
synced 2024-12-27 11:28:28 +03:00
13 lines
280 B
C#
13 lines
280 B
C#
using UIKit;
|
|
|
|
namespace Bit.iOS
|
|
{
|
|
public class Application
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
ObjCRuntime.Dlfcn.dlopen(ObjCRuntime.Constants.libSystemLibrary, 0);
|
|
UIApplication.Main(args, null, "AppDelegate");
|
|
}
|
|
}
|
|
}
|