presentation title goes heredownload.microsoft.com/download/8/b/f/8bfe821e-eae9-409a... ·...

25
帮助应用通往10亿 Windows设备的便捷桥梁 葛立峰 产品经理 微软操作系统开发者平台 课程代码WAD-B308

Upload: others

Post on 13-Jul-2020

0 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

帮助应用通往10亿Windows设备的便捷桥梁

葛立峰 产品经理 微软操作系统开发者平台

课程代码WAD-B308

Page 2: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

什么是Windows 10通用应用平台

Page 3: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

实现一个Windows的过程

Windows Desktop

IoT HoloLens

Surface Hub

Windows Phone

XBox

ONE CORE OS

ONE APP PLATFORM

ONE STORE Windows 10

Page 4: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

Phone Small Tablet 2-in-1s

(Tablet or Laptop) Desktops

& All-in-Ones Phablet Large Tablet Classic Laptop

Xbox IoT Surface Hub

… Windows 10 终端

Holographic

Windows 10

Page 5: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

One Store + One Dev Center

Cloud Services

One SDK + Tooling

Adaptive User Interface

Natural User Inputs

统一的Windows平台

Page 6: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

Windows 10应用开发桥梁

Page 7: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

将已有代码迁移到Windows 10 UWP

Windows platform Windows Phone 8 Silverlight apps

Universal Windows 8 apps

Universal Windows 10 apps

Classic applications (via ‘Centennial’)

Middleware platforms

Other mobile platforms

Web

platform

Page 8: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft
Page 9: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

EdgeHTML.dll Chakra

新的Edge浏览器引擎

Page 10: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

支持调用UWP API,例如: IAP Live tile/Notification Camera Calendar Cortana

<meta name="msapplication-cortanavcd" content="http://mysite.com/vcd.xml"/>"

content="http://flightarcade.azurewebsites.net/vcd/vcd.xml"/>

// Add an event listener for the activation event if (Windows.UI.WebUI.WebUIApplication.addEventListener(“activated”, function (args)) { // Handle the Voice Command activation event var activation = Windows.ApplicationModel.Activation; if (args.kind === activation.ActivationKind.voiceCommand) { // Extract the result from the speech recognition from the event arguments var speechRecognitionResult = args.result; // Get the recognized command, defined in the VCD file var command = speechRecognitionResult.rulePath[0]; // Get the full string of text that was spoken var textSpoken = speechRecognitionResult.text; } });

Hosted Web App

Page 11: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

无需重新提交商店更新来升级应用

Code

Visual Studio

Notepad++

Brackets

Vim

ATOM

Sublime Text

Emacs

开发

Push

Git

SVN

Visual Studio

Online

GitHub

Bitbucket

Gitlab

上传

Host

Amazon WS

Heroku

Parse

Private Cloud

Microsoft Azure

部署

Release

App更新

Hosted Web App

Page 12: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

演示 Hosted Web App

Page 13: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

UWP Bridge for iOS ‘Project Islandwood’

.appx

.M .M .CPP XCODE

Page 14: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

使用Objective-C来编写UWP

iOS API映射成相应UWP API,同时也支持UWP API直接调用

支持Objective-C和C#混合使用

原生UWP应用,无性能损失

Visual Studio开发工具套件支持Objective-C

Page 15: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

App Architecture

Universal App

Objective-C Code

clang/c2

VC++ Code

cl (c1/c2)

Windows 10 Platform

iOS API Library MS Linker

Page 16: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

开源 https://github.com/Microsoft/winobjc

Page 17: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

演示 Windows Bridge for iOS

Page 18: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

Bringing your to Windows 10 PCs

WP 8.x

Silverlight

Convert

Win10

UWP

Page 19: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

API调用转换:WP8.x Silverlight C#->UWP C# (namespace, API调用,sync/async等)

XAML UI:Silverlight XAML->UWP XAML

支持API转换扩展和自定义 https://github.com/MobilizeNet/UWPConversionMappings

VS2013 Windows Phone Silverlight 8.x项目工程-> VS2015 Windows10 UWP项目工程

Page 20: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

演示 Mobilize.Net Silverlight Bridge

Page 21: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

起始

• 利用Bridge技术重用现有代码编写UWP

• 尚未使用UWP特性

Ease User Exp Reach

进阶

• 利用Bridge的同时,使用UWP特性:

• In App Purchase

• Windows UX

• Live Tiles

• Notifications

Ease User Exp Reach

终点

• 编写原生的UWP应用

• 适配所有Windows 10设备

Ease User Exp Reach

Page 22: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft

参考资料

https://dev.windows.com/en-us/bridges

Page 24: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft
Page 25: Presentation title goes heredownload.microsoft.com/download/8/B/F/8BFE821E-EAE9-409A... · 2018-10-16 · Title: Presentation title goes here Author: Hayden Chu Subject: Microsoft