1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-07 02:53:56 +00:00

autofill project

This commit is contained in:
Kyle Spearrin
2018-09-19 22:25:16 -04:00
parent 42df1aecd5
commit a52d1e1506
21 changed files with 1141 additions and 0 deletions

15
src/iOS.Autofill/Main.cs Normal file
View File

@@ -0,0 +1,15 @@
using UIKit;
namespace Bit.iOS.Autofill
{
public class Application
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, "AppDelegate");
}
}
}