Windows Windows Phone Azure … and WakeUpAndCode.com.

Slides:



Advertisements
Similar presentations
FIM MOBILE PRESENTATION
Advertisements

Steve Milligan – Intergen Neil Macrae – New Zealand Police
Windows Windows Phone Azure … and WakeUpAndCode.com.
Windows iOS Android … and WakeUpAndCode.com.
CROSS PLATFORM DEVELOPMENT WITH MVVM CROSS By Ken Tucker.
3 TIME IT CAPACITY Actual Load Allocated IT-capacities Too Much Power Not Enough Power Load Forecast.
Windows Windows Phone Azure … and WakeUpAndCode.com.
Windows 8.1 Windows Phone 8.1 … and WakeUpAndCode.com.
Windows Windows Phone Azure … and WakeUpAndCode.com.
The Cloud for Modern WakeUpAndCode.com.
James Montemagno Developer Evangelist, Xamarin Developing Native iOS, Android, and Windows Apps in C# with Xamarin.
Switching on the cloud for Silverlight MSDN Live Meeting Gill Cleeren Microsoft Regional Director – Silverlight MVP Ordina Belgium.
Windows Core OS Services JavaScript (Chakra) C C++ C# VB Metro style apps Communication & Data Application Model Devices & Printing WinRT APIs Graphics.
INTRODUCTION TO CLOUD COMPUTING Cs 595 Lecture 5 2/11/2015.
Why consider the cloud? Cloud innovation presents challenges for IT.
9 TIME IT CAPACITY Actual Load Allocated IT-capacities Too Much Power Not Enough Power Load Forecast.
Cross Platform Mobile Backend with Mobile Services James
Lecture 8 – Platform as a Service. Introduction We have discussed the SPI model of Cloud Computing – IaaS – PaaS – SaaS.
Jump-starting Your Startup with WakeUpAndCode.com Icons/graphics from: iconarchive.com.
Windows Windows Phone Azure … and WakeUpAndCode.com.
Interoperabilidade com Windows Azure Computação em nuvem no Windows Azure com suporte a PHP, Java, Ruby e Python Rogerio Cordeiro Technical Evangelist.
Windows Web Xbox Mobile … and WakeUpAndCode.com.
Developing Enterprise Mobile Apps with Xamarin Loren Horsager CEO, Mobile Composer.
Windows Azure: Microsoft’s Cloud Platform By Shahed Chowdhuri.
A Digital and Technology Getting Started with Microsoft Azure API Management Ed Jones,
Easy for users to get & stay current Unified core and app platform Windows Phone 7.5 Windows Phone 8 Windows Phone 8.1 Windows 8 Xbox One Windows on Devices.
Easy for users to get & stay current Unified core and app platform Windows Phone 7.5 Windows Phone 8 Windows Phone 8.1 Windows 8 Xbox One Windows on Devices.
Understanding Xamarin Development Matt
Lagash Systems Mariano Sánchez – Software
How* to Win the #BestMicrosoftHack Shahed Chowdhuri Sr. Technical WakeUpAndCode.com *Hint: Use the Cloud.
Windows Windows Phone Azure … and WakeUpAndCode.com.
3 TIME IT CAPACITY Actual Load Allocated IT-capacities Too Much Power Not Enough Power Load Forecast.
Windows iOS Android … and WakeUpAndCode.com.
CLOUD COMPUTING. What is cloud computing ??? What is cloud computing ??? Cloud computing is a general term for anything that involves delivering hosted.
Windows 8.1 Windows Phone 8.1 Windows 10 … and WakeUpAndCode.com.
#SPSMX I want to use SharePoint in the Cloud Should I use Office 365 or Azure? Luis Du Solier SharePoint Premier Field Engineer Microsoft.
ASP.NET Core* Shahed Chowdhuri Sr. Technical WakeUpAndCode.com A Quick Overview of ASP.NET Core * aka ASP.NET 5 before.
The Windows 10 App platform: an introduction to the UWP Andy Wigley b:
ASP.NET Core* Shahed Chowdhuri Sr. Technical WakeUpAndCode.com A Quick Overview of ASP.NET Core RC2 * aka ASP.NET 5 before.
Your Host & Speaker Shahed Chowdhuri Sr. Technical Microsoft Technology Areas Enterprise Web/Software Development Game Development Mobile.
Your Host & Speaker Shahed Chowdhuri Sr. Technical Microsoft Technology Areas Enterprise Web/Software Development Game Development Mobile.
Cloud Computing Cosa, come e perché? Giancarlo Lelli Microsoft MVP – Avanade
Windows App Studio Windows App Studio is the tool that makes it fast and easy to build Windows 10 apps. It’s accessible from any device with a browser.
ASP.NET Core* Shahed Chowdhuri Sr. Technical WakeUpAndCode.com Deploying Your Web Apps * aka ASP.NET 5 before RC1.
Clouding with Microsoft Azure
Mobile Application Solution
Windows 8 + Windows Phone + cloud
Xamarin Studio Xamarin Curriculum for Xamarin Studio
Developing Windows 10 Games with Construct 2
Intro to HoloLens Development
The Universal Windows Platform
6/2/2018 4:08 AM BRK3327 Ten things you didn't know about building .NET UWP apps in Visual Studio 2017 Daniel Jacobson Program Manager – Visual Studio.
Platform as a Service.
Mobile Application Solution
Week 01 Comp 7780 – Class Overview.
02 | Hosting Services in Windows Azure
Cross Platform Development with Xamarin & Visual Studio 2013
Developing on a Mac For C# Developers Shahed Chowdhuri
Windows 10 Preview Andy & Jerry
Hosted Web Apps with Windows App Studio
A Quick Overview of ASP.NET Core 1.0
ASP.NET Core* MVC and Web API Shahed Chowdhuri
Serverless Architecture in the Cloud
Tech for Startups By Shahed Chowdhuri Sr. Technical Evangelist
Office 365 Development.
Azure Mobile Services in the Cloud
Developing Universal Windows Apps with HTML and JavaScript
Done by:Thikra abdullah
ASP.NET Core 2.0 The Future of Web Apps Shahed Chowdhuri
Intro to HoloLens Development
Presentation transcript:

Windows Windows Phone Azure … and WakeUpAndCode.com

Intro: Cloud + Universal Apps > Creating a Mobile Service > Consuming the Service > Publishing the Service Q&A

Tools & Technologies Windows 10

Introduction: The Cloud

HostBuildConsume Packaged Software IaaS: infrastructure as a service PaaS: Platform as a service Saas: software as a service Applications Self- Managed Self- Managed Self- Managed Managed By Vendor Data Runtime Managed By Vendor Middleware O/S Virtualization Managed By Vendor Servers Storage Networking Source: Bret Stateham, Windows Azure evangelist

“… mobile first, cloud first… ” Microsoft CEO Satya Nadella

Universal Apps

 "Apps that are tailored to people with disabilities"  "Apps that are automatically multi-lingual and culture adherent"  "Apps that can run on all platforms (iOS, Android, Windows)"  "A single app package that will work across Microsoft devices“  None of the Above?

Universal Apps for Windows 1 solution 1 shared project (no binary output) 1 project per platform (separate binary output per platform) Windows, Windows Phone, Xbox One (coming soon!) Ref:

Pricing structure – Match Windows Phone pricing on Windows 8 Shared in-app purchases – Buy IAPs only once, on either platform. Install across devices – Buy app only once, own across platforms Shared revenue model – Keep 70% of revenue Unified ad-units for Windows Phone and Windows apps Ref:

Visual Studio

C# and XAML HTML5 & JavaScript C++ and DirectX

Reference:

Reference:

Reference: “This type of project has been improved in Visual Studio 2013 Update 2 and now, if we target Windows 8.1 and Windows Phone 8.1, we’ll be able to use all the common APIs. However, PCL produces a single binary that works as is in all the supported projects. Handling divergent APIs requires using higher-level abstractions, such as dependency injection or IoC containers. We can’t simply use conditional if to define platform specific code.” How about using a Portable Class Library (PCL)?

2.Add Project to Solution: 1.Download & Install “Shared Project Reference Manager” from MSDN: 3.Add Class Library for each platform (Win 8.1 & WP 8.1) 4.Add Shared Project Reference to each Class Library. Ref:

Intro: Cloud + Universal Apps > Creating a Mobile Service > Consuming the Service > Publishing the Service Q&A

Creating a Mobile Service

Link:

Consuming the Service

...

Publishing the Service

Enter a value to test it

Intro: Cloud + Universal Apps > Creating a Mobile Service > Consuming the Service > Publishing the Service Q&A

Intro: Cloud + Universal Apps > Creating a Mobile Service > Consuming the Service > Publishing the Service Q&A

Twitter: