From 3560811d280e76336d9f411ea8bc87ca8bc0c64f Mon Sep 17 00:00:00 2001 From: "Sayel Miah (miahs26)" Date: Sun, 13 Dec 2020 18:58:26 +0000 Subject: [PATCH] Add files via upload --- NoteKeeper.iOS/Entitlements.plist | 7 ++ NoteKeeper.iOS/Info.plist | 38 +++++++ NoteKeeper.iOS/Main.cs | 20 ++++ NoteKeeper.iOS/NoteKeeper.iOS.csproj | 142 +++++++++++++++++++++++++++ 4 files changed, 207 insertions(+) create mode 100644 NoteKeeper.iOS/Entitlements.plist create mode 100644 NoteKeeper.iOS/Info.plist create mode 100644 NoteKeeper.iOS/Main.cs create mode 100644 NoteKeeper.iOS/NoteKeeper.iOS.csproj diff --git a/NoteKeeper.iOS/Entitlements.plist b/NoteKeeper.iOS/Entitlements.plist new file mode 100644 index 0000000..e9a3005 --- /dev/null +++ b/NoteKeeper.iOS/Entitlements.plist @@ -0,0 +1,7 @@ + + + + + + + diff --git a/NoteKeeper.iOS/Info.plist b/NoteKeeper.iOS/Info.plist new file mode 100644 index 0000000..a6455ce --- /dev/null +++ b/NoteKeeper.iOS/Info.plist @@ -0,0 +1,38 @@ + + + + + UIDeviceFamily + + 1 + 2 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + MinimumOSVersion + 8.0 + CFBundleDisplayName + NoteKeeper + CFBundleIdentifier + com.companyname.NoteKeeper + CFBundleVersion + 1.0 + UILaunchStoryboardName + LaunchScreen + CFBundleName + NoteKeeper + XSAppIconAssets + Assets.xcassets/AppIcon.appiconset + + diff --git a/NoteKeeper.iOS/Main.cs b/NoteKeeper.iOS/Main.cs new file mode 100644 index 0000000..81f194d --- /dev/null +++ b/NoteKeeper.iOS/Main.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; + +using Foundation; +using UIKit; + +namespace NoteKeeper.iOS +{ + 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"); + } + } +} diff --git a/NoteKeeper.iOS/NoteKeeper.iOS.csproj b/NoteKeeper.iOS/NoteKeeper.iOS.csproj new file mode 100644 index 0000000..df34604 --- /dev/null +++ b/NoteKeeper.iOS/NoteKeeper.iOS.csproj @@ -0,0 +1,142 @@ + + + + Debug + iPhoneSimulator + 8.0.30703 + 2.0 + {2423E9A1-6E60-4171-9ABD-F191AC7A48F8} + {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {65C0771A-452F-423B-995C-F0AE46E643BA} + Exe + NoteKeeper.iOS + Resources + NoteKeeper.iOS + true + NSUrlSessionHandler + + + true + full + false + bin\iPhoneSimulator\Debug + DEBUG + prompt + 4 + x86_64 + None + true + + + none + true + bin\iPhoneSimulator\Release + prompt + 4 + None + x86_64 + + + true + full + false + bin\iPhone\Debug + DEBUG + prompt + 4 + ARM64 + iPhone Developer + true + Entitlements.plist + + + none + true + bin\iPhone\Release + prompt + 4 + ARM64 + iPhone Developer + Entitlements.plist + + + + + + + + + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + {FB60E34A-93A8-4CB5-8A6E-44044F7D3DE3} + NoteKeeper + + + \ No newline at end of file