Added Mobile/Android/iOS/UWP Xamarin CS Projects

- All projects build except Android
- Android one requires you to have less than 255 characters in the .obj directory BEFORE it can compile and build correctly to the output path, no matter where it is, and this is further limited because it will repeat the full directory structure WITHIN the existing directory path for the current projects...which means i really get about 100 characters for my full dir path of the project due to the length of the full "longname" being repeated (total 2x representations in the path)...so i'm going to commit the changes, push it up, then pull it back down closer to the root of my dev drive...complete nonsense, but what can you do?
This commit is contained in:
Nate VanBuskirk
2020-01-10 00:31:52 -06:00
parent eaac71df55
commit c6d2535ca0
122 changed files with 10401 additions and 0 deletions
@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace FF7.Grinder.Mobile.iOS
{
// The UIApplicationDelegate for the application. This class is responsible for launching the
// User Interface of the application, as well as listening (and optionally responding) to
// application events from iOS.
[Register("AppDelegate")]
public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
{
//
// This method is invoked when the application has loaded and is ready to run. In this
// method you should instantiate the window, load the UI into it and then make the window
// visible.
//
// You have 17 seconds to return from this method, or iOS will terminate your application.
//
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
global::Xamarin.Forms.Forms.Init();
LoadApplication(new App());
return base.FinishedLaunching(app, options);
}
}
}