Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
Updated 'MapDemo' sample (#307)
Browse files Browse the repository at this point in the history
* added new project

* updated  LaunchScreen and assets

* removed old project + upgrade storyboard

* renamed root folder back

* updated namespaces
  • Loading branch information
mykyta-bondarenko authored and conceptdev committed Nov 15, 2018
1 parent ea86f68 commit 5c39477
Show file tree
Hide file tree
Showing 39 changed files with 916 additions and 669 deletions.
26 changes: 13 additions & 13 deletions MapDemo/MapDemo.sln 100755 → 100644
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapDemo", "MapDemo\MapDemo.csproj", "{A8ED3331-ADA1-49D9-9165-225F8C1DCCEA}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapDemo", "MapDemo\MapDemo.csproj", "{0C9B6B52-850A-45A1-9428-EF3944A44E11}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -13,18 +13,18 @@ Global
AppStore|iPhone = AppStore|iPhone
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A8ED3331-ADA1-49D9-9165-225F8C1DCCEA}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone
{A8ED3331-ADA1-49D9-9165-225F8C1DCCEA}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone
{A8ED3331-ADA1-49D9-9165-225F8C1DCCEA}.AppStore|iPhone.ActiveCfg = AppStore|iPhone
{A8ED3331-ADA1-49D9-9165-225F8C1DCCEA}.AppStore|iPhone.Build.0 = AppStore|iPhone
{A8ED3331-ADA1-49D9-9165-225F8C1DCCEA}.Debug|iPhone.ActiveCfg = Debug|iPhone
{A8ED3331-ADA1-49D9-9165-225F8C1DCCEA}.Debug|iPhone.Build.0 = Debug|iPhone
{A8ED3331-ADA1-49D9-9165-225F8C1DCCEA}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
{A8ED3331-ADA1-49D9-9165-225F8C1DCCEA}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
{A8ED3331-ADA1-49D9-9165-225F8C1DCCEA}.Release|iPhone.ActiveCfg = Release|iPhone
{A8ED3331-ADA1-49D9-9165-225F8C1DCCEA}.Release|iPhone.Build.0 = Release|iPhone
{A8ED3331-ADA1-49D9-9165-225F8C1DCCEA}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
{A8ED3331-ADA1-49D9-9165-225F8C1DCCEA}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
{0C9B6B52-850A-45A1-9428-EF3944A44E11}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
{0C9B6B52-850A-45A1-9428-EF3944A44E11}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
{0C9B6B52-850A-45A1-9428-EF3944A44E11}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
{0C9B6B52-850A-45A1-9428-EF3944A44E11}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
{0C9B6B52-850A-45A1-9428-EF3944A44E11}.Debug|iPhone.ActiveCfg = Debug|iPhone
{0C9B6B52-850A-45A1-9428-EF3944A44E11}.Debug|iPhone.Build.0 = Debug|iPhone
{0C9B6B52-850A-45A1-9428-EF3944A44E11}.Release|iPhone.ActiveCfg = Release|iPhone
{0C9B6B52-850A-45A1-9428-EF3944A44E11}.Release|iPhone.Build.0 = Release|iPhone
{0C9B6B52-850A-45A1-9428-EF3944A44E11}.Ad-Hoc|iPhone.ActiveCfg = Release|iPhone
{0C9B6B52-850A-45A1-9428-EF3944A44E11}.Ad-Hoc|iPhone.Build.0 = Release|iPhone
{0C9B6B52-850A-45A1-9428-EF3944A44E11}.AppStore|iPhone.ActiveCfg = Release|iPhone
{0C9B6B52-850A-45A1-9428-EF3944A44E11}.AppStore|iPhone.Build.0 = Release|iPhone
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = MapDemo\MapDemo.csproj
Expand Down
25 changes: 15 additions & 10 deletions MapDemo/MapDemo/AppDelegate.cs 100755 → 100644
@@ -1,16 +1,21 @@
using Foundation;
using Foundation;
using UIKit;

namespace MapDemo
{
// 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 class AppDelegate : UIApplicationDelegate
{
public override UIWindow Window { get; set; }

[Register ("AppDelegate")]
public class AppDelegate : UIApplicationDelegate
{
public override UIWindow Window {
get;
set;
}
}
}
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
{
// Override point for customization after application launch.
// If not required for your application you can safely delete this method

return true;
}
}
}

0 comments on commit 5c39477

Please sign in to comment.