tizen sdk and web app development · 2017-11-07 · other web apps webos webworks tizen core...

41
Tizen SDK and Web App Development Cheng Luo LinuxCon Europe 2012 Monday, 12 November 12

Upload: others

Post on 11-Jul-2020

6 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Tizen SDK and Web App DevelopmentCheng Luo

LinuxCon Europe 2012

Monday, 12 November 12

Page 2: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Agenda

• Tizen 2.0 alpha SDK

•Web app development

Monday, 12 November 12

Page 3: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Tizen 2.0 alpha SDK

• IDE - Eclipse based

• Emulator - qemu based

• Web based (Chrome) simulator

• UI Builder

• Event Injector

• Remote inspector /Firebug

• Documentation & Sample code

Monday, 12 November 12

Page 4: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Installing SDK

• The SDK supports Windows and Ubuntu

• The SDK Mac version is coming soon

• Installation Manager supports the snapshot-based or SDK image-based installation

• Pay attention to prerequisites, specially on Ubuntu (JDK, JRE, qemu, VTx support etc.)

Monday, 12 November 12

Page 5: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Monday, 12 November 12

Page 6: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Install JDK on Ubuntu

• Tizen IDE is based on Oracle Java v7, not OpenJDK

•Oracle doesn’t allow re-distribution of Java packages, so...

• oab-java6 a good script for installing oracle-jdk, oracle-jre on Ubuntu

• still need some tweaks to install the latest JDK-7u9 with oab-java6☞

☞: https://github.com/flexiondotorg/oab-java6

Monday, 12 November 12

Page 7: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Running IDE on Ubuntu

• Install libwebkitgtk-1.0-0, if you get error such as☞:

Exception in thread "main" org.eclipse.swt.SWTError: No more handles [Unknown Mozilla path (MOZILLA_FIVE_HOME not set)]

• Install Ajax Tool Framework (ATF) if Event Injector is not shown☞

http://wiki.eclipse.org/ATF/Installing

☞: http://tronprog.blogspot.co.uk/2012/05/eclipse-internal-web-browser-in-kubuntu.html

Monday, 12 November 12

Page 8: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Tizen 2.0 alpha new features

auto-dividerMonday, 12 November 12

Page 9: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Tizen 2.0 alpha new features

Enhanced HTML5WebKit2 WRT

multi-processvideo subtitles video caption

screen orientation APIs

keygen details battery status

auto-dividerMonday, 12 November 12

Page 10: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Tizen 2.0 alpha new features

Enhanced HTML5WebKit2 WRT

multi-processvideo subtitles video caption

screen orientation APIs

Better IDE & SDKsmart installer snapshot-based

installationenhanced openGL ES

UI Builderkeygen details battery status WebGL acceleratedemulator

auto-dividerMonday, 12 November 12

Page 11: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Tizen 2.0 alpha new features

Enhanced HTML5WebKit2 WRT

multi-processvideo subtitles video caption

screen orientation APIs

Better IDE & SDKsmart installer snapshot-based

installationenhanced openGL ES

UI Builderkeygen details battery status

Web UI FWcontent selection shortcut scroll widget

context menu auto-dividerexpandable list virtual list

WebGL acceleratedemulator

auto-dividerMonday, 12 November 12

Page 12: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Tizen 2.0 alpha new features

Enhanced HTML5WebKit2 WRT

multi-processvideo subtitles video caption

screen orientation APIs

Better IDE & SDKsmart installer snapshot-based

installationenhanced openGL ES

UI Builderkeygen details battery status

Web UI FWcontent selection shortcut scroll widget

context menu auto-dividerexpandable list virtual list

WebGL acceleratedemulator

auto-divider

More Device APIsdownload APIs notification APIs

power control

Monday, 12 November 12

Page 13: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Web apps on Tizen

Monday, 12 November 12

Page 14: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Web Apps

Mobile site Hosted app Packaged appUI web page generic UI generic/native

Store search engine app stores app stores

Pros no need to installlow memory footprint

only add a manifest filelow maintenance/memory footprint

offline launchingaccess to device s APIs

Cons security risklimited features require a server maintenance

Monday, 12 November 12

Page 15: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Mobile Web

<?xml&version="1.0"%encoding="UTF18"?>%

<widget&xmlns="http://www.w3.org/ns/widgets"%xmlns:tizen="http://tizen.org/ns/widgets"%version="2.0%Beta"%viewmodes="fullscreen"%id="http://yourdomain/FacebookApp">%%%<icon&src="icon.png"/>%%%<content&src="http://m.facebook.com"/>%%%<name>FacebookApp</name>&<access&origin&=&"*"/>%</widget>&

Monday, 12 November 12

Page 16: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Mobile Web

<?xml&version="1.0"%encoding="UTF18"?>%

<widget&xmlns="http://www.w3.org/ns/widgets"%xmlns:tizen="http://tizen.org/ns/widgets"%version="2.0%Beta"%viewmodes="fullscreen"%id="http://yourdomain/FacebookApp">%%%<icon&src="icon.png"/>%%%<content&src="http://m.facebook.com"/>%%%<name>FacebookApp</name>&<access&origin&=&"*"/>%</widget>&

EASY

Monday, 12 November 12

Page 17: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Other Web Apps

webOS WebWorks Tizen

Core enyo.kind, enyo.Animator, enyo.Signals, Core API

tizen, Application, SystemInfo, Notification, HTML5, CSS3

AJAX enyo.Aync, xhr, json, cookie jQuery.get, XMLHttpRquest jQuery.get

Touch events

Touch, ScrollMath, ScrollStrategy, Scoller jQuery touch events jQuery touch events,

Tizen events

UI onyx CSS jQueryMobile, Tizen Web UI

Monday, 12 November 12

Page 18: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Other Web Apps

webOS WebWorks Tizen

Core enyo.kind, enyo.Animator, enyo.Signals, Core API

tizen, Application, SystemInfo, Notification, HTML5, CSS3

AJAX enyo.Aync, xhr, json, cookie jQuery.get, XMLHttpRquest jQuery.get

Touch events

Touch, ScrollMath, ScrollStrategy, Scoller jQuery touch events jQuery touch events,

Tizen events

UI onyx CSS jQueryMobile, Tizen Web UI

CODE REWRITE

Monday, 12 November 12

Page 19: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

HTML5

Monday, 12 November 12

Page 20: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

HTML5GOOD LUCK

Monday, 12 November 12

Page 21: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Webkit-efl Rendering Flow

Javascriptcore

Web core

Evas Object(buffer)

Cairo Evas & Ecore

X Server

OpenGL ES/GL

web view

UI FW

Monday, 12 November 12

Page 22: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

HTML5 compatibility test

Monday, 12 November 12

Page 23: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

HTML5 compatibility test

NO.1

Monday, 12 November 12

Page 24: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Tizen Device API

Monday, 12 November 12

Page 25: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Tizen Device API

Alarm

Application

Bluetooth

Calendar

Call

Contact

Filesystem

Geocoder

LBS

Media Content

Messaging

Power

NFC

System Info

Time DownloadNotification

Monday, 12 November 12

Page 26: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Demo

Monday, 12 November 12

Page 27: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Monday, 12 November 12

Page 28: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Build your UI

• Tizen web UI framework

• jQuery Mobile

• CSS3 animation

Monday, 12 November 12

Page 29: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Tizen Web UI vs Native

vs.

Monday, 12 November 12

Page 30: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

CSS3 animation - Flipboard

Monday, 12 November 12

Page 31: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

CSS3 animation - Flipboard

Monday, 12 November 12

Page 32: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Porting web apps

Monday, 12 November 12

Page 33: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Case study: webOS Onyx

Monday, 12 November 12

Page 34: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Demo

Monday, 12 November 12

Page 35: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Monday, 12 November 12

Page 36: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Landscape

Case Study: BlackBerry Aura

Portrait

Monday, 12 November 12

Page 37: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

After porting

Monday, 12 November 12

Page 38: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Screen Resolution

1024

600 17:10

720

1280 9:16

Playbook Tizen HD

Monday, 12 November 12

Page 39: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

Device APIvar  acc  =  new  Vector(0,0);acc.x  =  event.accelerationIncludingGravity.x;acc.y  =  event.accelerationIncludingGravity.y;var  accAngle  =  Math.atan2(-­‐acc.x,  acc.y);  //angle  between  the  rope  and  x  axis

Y

Z

X

Playbook Tizen HD

Monday, 12 November 12

Page 40: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

The last mile - Packaging

Monday, 12 November 12

Page 41: Tizen SDK and Web App Development · 2017-11-07 · Other Web Apps webOS WebWorks Tizen Core enyo.kind, enyo.Animator, enyo.Signals, Core API tizen, Application, SystemInfo, Notification,

thank you@chengluo

[email protected]

Monday, 12 November 12