Transcript
Page 1: Ksdg customize-your-firefoxos

Customize Your Firefox OS

Yuren Ju

Page 2: Ksdg customize-your-firefoxos

今天要講這個!

Page 3: Ksdg customize-your-firefoxos

http://www.pcworld.idg.com.au/article/465951/developers_express_enthusiasm_firefox_os_survey_shows/

Page 4: Ksdg customize-your-firefoxos

Running game on Browser without plugins

Page 5: Ksdg customize-your-firefoxos

MinGWfor Windows developers

Page 6: Ksdg customize-your-firefoxos

Yuren Ju

● KaLUG● Hacking Thursday● COSCUP● Mozilla

Page 7: Ksdg customize-your-firefoxos
Page 8: Ksdg customize-your-firefoxos
Page 9: Ksdg customize-your-firefoxos

http://www.flickr.com/photos/kky/704056791/

Web Technology

Page 10: Ksdg customize-your-firefoxos

https://github.com/coolaj86/logo.js

Page 11: Ksdg customize-your-firefoxos
Page 12: Ksdg customize-your-firefoxos

dialer.[js/html/css]

Page 13: Ksdg customize-your-firefoxos

?Telephony, FM, Bluetooth, SMS

Mobile Connection, ContactAlarm, Ambient Light Sensor

Battery, Camera

Page 14: Ksdg customize-your-firefoxos

Web API for Firefox OShttps://developer.mozilla.org/en-US/docs/WebAPI

Page 15: Ksdg customize-your-firefoxos
Page 16: Ksdg customize-your-firefoxos

http://www.mozfans.com/thread-411-1-1.html

Page 17: Ksdg customize-your-firefoxos
Page 18: Ksdg customize-your-firefoxos

e.g., bluetooth

BlueZ

WebBluetooth

navigator.mozBluetooth

Gonk

Gecko

Gaia

Page 19: Ksdg customize-your-firefoxos

e.g., Infrared?

LIRCLinux Infrared Remote Control

mozInfrared

navigator.mozInfrared

Gonk

Gecko

Gaia

Something like this, although we haven't supported infrared yet.

Page 20: Ksdg customize-your-firefoxos

Standard! Standard! Standard!

Page 21: Ksdg customize-your-firefoxos

Build Firefox OS

https://github.com/mozilla-b2g/B2G

Page 22: Ksdg customize-your-firefoxos

Build B2G

● git clone https://github.com/mozilla-b2g/B2G.git

● (install a lot of dependencies...)● ./config.sh <DEVICE_NAME>● ./build.sh● wait 20min ~ 2hr... Zzzzz...

Page 23: Ksdg customize-your-firefoxos

But I'm a gaia developer. \o/

Page 24: Ksdg customize-your-firefoxos

Firefox & Firefox OS

OS

Firefox

web apps Gaia

Gecko + Gonk

Hardware Hardware

Page 25: Ksdg customize-your-firefoxos

Run Gaia on Firefox Browser!

OS

Firefox

gaia + web apps

Gecko + Gonk

Hardware Hardware

Page 26: Ksdg customize-your-firefoxos

Build for Gaia

● git clone https://github.com/mozilla-b2g/gaia.git

● cd gaia● make (10~30s except first time)

Page 27: Ksdg customize-your-firefoxos

Different Targets...

● make production

Page 28: Ksdg customize-your-firefoxos

DEBUG=1 make

Page 29: Ksdg customize-your-firefoxos

Built-in Customization Mechanismhttps://wiki.mozilla.org/B2G/MarketCustomizations

Page 30: Ksdg customize-your-firefoxos

Customization Mechanism

Gaia Distribution Dir

Building...

Page 31: Ksdg customize-your-firefoxos

GAIA_DIR/build/settings.js

e.g., settings/lockscreen/wallpaper

Page 32: Ksdg customize-your-firefoxos
Page 33: Ksdg customize-your-firefoxos

Apps customization

Page 34: Ksdg customize-your-firefoxos

build/apps-*.list

● production– apps/*– external-apps/*– outoftree_apps/*

● engineering– apps/*– test_apps/*– showcase_apps/*– test_external_apps/*– external-apps/*– outoftree_apps/*

Page 35: Ksdg customize-your-firefoxos

apps.list

● apps/*● external-apps/twitter

Page 36: Ksdg customize-your-firefoxos

Customization Mechanism

Gaia /apps/* /external-apps/twitter

Distribution Dir /apps/* /external-apps/twitter

Building...

Page 37: Ksdg customize-your-firefoxos
Page 38: Ksdg customize-your-firefoxos
Page 39: Ksdg customize-your-firefoxos

Modify Firefox OS

Page 40: Ksdg customize-your-firefoxos

Tools

http://www.flickr.com/photos/84906483@N08/8747337118/

Page 41: Ksdg customize-your-firefoxos

built-in debugger

Page 42: Ksdg customize-your-firefoxos

or you prefer firebug <3

Page 43: Ksdg customize-your-firefoxos

Modify color of dock

Page 44: Ksdg customize-your-firefoxos

Practice: how tocustomization tone of dialing?

gasolin has demoed this work at COSCUP 2013

Page 45: Ksdg customize-your-firefoxos

Gecko

Gaia

system

comms Browser Settings ...email

Gaia Overview

Page 46: Ksdg customize-your-firefoxos
Page 47: Ksdg customize-your-firefoxos

Tip: use inspector toknow where you are

Page 48: Ksdg customize-your-firefoxos

after found the app...Which script we should trace in?

Page 49: Ksdg customize-your-firefoxos
Page 50: Ksdg customize-your-firefoxos

KeypadManager.keyHandler()

Page 51: Ksdg customize-your-firefoxos

https://wiki.mozilla.org/Audio_Data_API

Page 52: Ksdg customize-your-firefoxos

HTML 5 Audio API

Page 53: Ksdg customize-your-firefoxos

TonePlayerAudio()

KeypadManager.keyHandler()

Page 54: Ksdg customize-your-firefoxos

Okay,let's find the cool tones for dialing :-)

http://zhusee2.github.io/bumbler-to-speech/

Page 55: Ksdg customize-your-firefoxos

copy into gaia

Page 56: Ksdg customize-your-firefoxos

Modify Source Code

Page 57: Ksdg customize-your-firefoxos

Try it on browser and device! LOL

Page 58: Ksdg customize-your-firefoxos

Contribution

Page 59: Ksdg customize-your-firefoxos

+