1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-18 17:23:18 +00:00

Added and configured iOS Extension project with ExtensionPreprocessingJS for webpage analysis.

This commit is contained in:
Kyle Spearrin
2016-05-07 01:54:44 -04:00
parent d4b56e0e16
commit 1664c3fbf0
12 changed files with 480 additions and 0 deletions

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

@@ -0,0 +1,15 @@
using UIKit;
namespace Bit.iOS.Extension
{
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");
}
}
}