Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfbjarne committed Mar 7, 2018
1 parent fa7c2e4 commit fea250c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions AppDelegate.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
using System;

using Foundation;
using UIKit;
using ObjCRuntime;

public class AppDelegate : UIApplicationDelegate
{
Expand All @@ -10,6 +13,7 @@ public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
window = new UIWindow (UIScreen.MainScreen.Bounds);
window.RootViewController = dvc = new UIViewController ();
dvc.View.BackgroundColor = UIColor.White;
window.MakeKeyAndVisible ();

return true;
Expand Down
2 changes: 1 addition & 1 deletion Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<key>CFBundleDisplayName</key>
<string>Hello World</string>
<key>MinimumOSVersion</key>
<string>8.0</string>
<string>6.0</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>CFBundleName</key>
Expand Down
7 changes: 3 additions & 4 deletions unified-test-app.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
<MtouchArch>x86_64</MtouchArch>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<MtouchProfiling>true</MtouchProfiling>
<MtouchExtraArgs></MtouchExtraArgs>
<MtouchLink>None</MtouchLink>
<MtouchExtraArgs>--registrar:static --optimize:all</MtouchExtraArgs>
<MtouchLink>Full</MtouchLink>
<MtouchNoSymbolStrip>true</MtouchNoSymbolStrip>
<CodesignKey>iPhone Developer</CodesignKey>
<DeviceSpecificBuild>false</DeviceSpecificBuild>
Expand Down Expand Up @@ -70,8 +70,7 @@
<MtouchArch>ARM64</MtouchArch>
<DebugSymbols>true</DebugSymbols>
<MtouchExtraArgs></MtouchExtraArgs>
<MtouchNoSymbolStrip>false</MtouchNoSymbolStrip>
<MtouchUseLlvm>true</MtouchUseLlvm>
<MtouchNoSymbolStrip>true</MtouchNoSymbolStrip>
<MtouchLink>Full</MtouchLink>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit fea250c

Please sign in to comment.