Presentation is loading. Please wait.

Presentation is loading. Please wait.

Microsoft Build 2016 9/19/2018 7:53 PM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,

Similar presentations


Presentation on theme: "Microsoft Build 2016 9/19/2018 7:53 PM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,"— Presentation transcript:

1 Microsoft Build 2016 9/19/2018 7:53 PM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

2 Mobile First Miguel de Icaza miguel@xamarin.com B836
Microsoft Build 2016 9/19/2018 7:53 PM B836 Mobile First Miguel de Icaza © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

3 Xamarin for Everyone Microsoft Build 2016 9/19/2018 7:53 PM
© 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

4 Microsoft Build 2016 9/19/2018 7:53 PM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

5 Mobile Agility with Xamarin and .NET
Microsoft Build 2016 9/19/2018 7:53 PM Mobile Agility with Xamarin and .NET Increase Your Reach Support customers on every device, everywhere Delight your Customers Use the best features available on each platform Full access and full control of the platform High Quality Apps Avoid platform disparity Do not fix the same bug three times Lower Development Costs © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

6 Open Source .NET Everywhere
Microsoft Build 2016 9/19/2018 7:53 PM Open Source .NET Everywhere © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

7 .NET Simple, powerful and native

8 Windows APIs Microsoft.Phone Windows.Storage Microsoft.Devices
Microsoft.Networking Windows.Storage Windows.Foundation Microsoft.Devices System.Net System System.IO System.Linq System.Xml System.Data System.Windows System.Numerics System.Core System.ServiceModel

9 iOS – 100% API Coverage MapKit UIKit iBeacon CoreGraphics CoreMotion
Build 2015 9/19/2018 7:53 PM iOS – 100% API Coverage MapKit UIKit iBeacon CoreGraphics CoreMotion System.Net System System.IO System.Linq System.Xml System.Data System.Windows System.Numerics System.Core System.ServiceModel © 2015 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

10 Android – 100% API Coverage
Build 2015 9/19/2018 7:53 PM Android – 100% API Coverage Text-to-speech ActionBar Printing Framework Renderscript NFC System.Net System System.IO System.Linq System.Xml System.Data System.Windows System.Numerics System.Core System.ServiceModel © 2015 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

11 Strategies for sharing code

12 Xamarin’s Cross-platform approach
Build 2015 9/19/2018 7:53 PM Xamarin’s Cross-platform approach Windows-specific C# Android-specific C# iOS-specific C# Shared C# Logic Shared C# codebase • 100% native API access • High performance © 2015 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

13 Sharing Code - Strategies
Shared Projects Put shared code in a “Shared Project” Reference the shared project from Android, iOS, Windows, Web And the source code from the shared project is included. Very flexible, can use partial classes, very simple, full API access Portable Class Libraries For when you are designing code to be consumed by others Easier to consume by third parties Limited API access Existing Components and NuGets Our libraries support you with either approach

14 Powerful abstractions

15 TextToSpeech.Speak(“Hello World”);
Microsoft Build 2016 9/19/2018 7:53 PM SpeechSynthesizer TextToSpeech AVSpeechSynthesizer TextToSpeech.Speak(“Hello World”); © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

16 Plugins for Xamarin Common Mobile API Platform Native APIs
Microsoft Build 2016 9/19/2018 7:53 PM Plugins for Xamarin xamarin.com/plugins Common Mobile API Speech Camera Settings Connectivity SMS Location Platform Native APIs © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

17 Shared Xamarin.Forms UI
Xamarin.Forms slide Windows-specific C# Android-specific C# iOS-specific C# Shared C# Logic Shared Xamarin.Forms UI

18 Translations & Rotations
2D Graphics Library Skia The 2D graphics engine Powers Google Chrome and Android. Cross platform: Android, iOS, Mac, Windows. Coming soon: UWP, tvOS. Comprehensive Image loading and saving Immediate composited rendering mode GPU accelerated (where available/enabled) Custom effects and shaders Actively Developed Both Skia and the SkiaSharp bindings are in active development Shapes Bézier Curves Translations & Rotations Text rendering Discrete Path Effects Composed Path Effects Sum Path Effects Shaders

19 3D Retained Graphics Engine
Urho Retained 3D engine Cross platform: Android, iOS, Mac, Windows. Coming soon: UWP, tvOS. Comprehensive 3D Scenes Retained component system GPU accelerated Custom effects and shaders Actively Developed Both Urho and the UrhoSharp bindings are in active development

20 Inspector and Workbooks
9/19/2018 7:53 PM Inspector and Workbooks © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

21 Inspector IDE support to inspect live applications
Monitor your application live Execute C# code against a running application Make changes, explore your application Powered by Roslyn’s C# Cross Platform Supports Android, iOS, Mac and Windows

22 Workbooks Bringing Interactive C# to the next level
Learn by experimentation Workbooks are live documents They contain Markdown text With embedded C# code The code executes on demand And re-executes any code after you make changes

23 9/19/2018 7:53 PM Hands on © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

24 Demo – Learning by Experimenting
Microsoft Build 2016 9/19/2018 7:53 PM Demo – Learning by Experimenting Miguel de Icaza © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

25 Demo – Learning with Workbooks
Microsoft Build 2016 9/19/2018 7:53 PM Demo – Learning with Workbooks Miguel de Icaza © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

26 9/19/2018 7:53 PM Testing © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

27 Authoring tests Unit testing UI Testing Test Recorder

28 Demo – Test Recorder Miguel de Icaza Microsoft Build 2016
9/19/2018 7:53 PM Demo – Test Recorder Miguel de Icaza © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

29 Demo – Test Cloud Miguel de Icaza Microsoft Build 2016
9/19/2018 7:53 PM Demo – Test Cloud Miguel de Icaza © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

30 Please Complete An Evaluation Form Your input is important!
9/19/2018 Please Complete An Evaluation Form Your input is important! or © 2016 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

31 9/19/2018 7:53 PM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.


Download ppt "Microsoft Build 2016 9/19/2018 7:53 PM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,"

Similar presentations


Ads by Google