fake your way as a mobile developer rockstar with phonegap

32
Fake Your Way as a Mobile Developer Rockstar Introducing the PhoneGap framework with Glen Smith

Upload: glenasmith

Post on 24-Jun-2015

2.997 views

Category:

Technology


2 download

DESCRIPTION

Introdu

TRANSCRIPT

Page 1: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Fake Your Way as a Mobile Developer

Rockstar Introducing the PhoneGap framework

with Glen Smith

Page 2: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Ancient Hacker Wisdom…

Where there are no oxen, the stall is clean. Solomon, Proverbs 14:4

Page 3: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Why this talk?

Page 4: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

“The only thing I’m addicted to right now is

winning.”

Page 5: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Best Case Outcomes • Learn what PhoneGap does

•See how it works in action

•Deploy it to a device

•Swap stories & have fun!

Page 6: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

What is it?

Page 7: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Crossplatform, like Java?

Page 8: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Actually, no…

Page 9: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

* for large values of once

Page 10: Fake Your Way as a Mobile Developer Rockstar with PhoneGap
Page 11: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Vendor Backing

Page 12: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

So What Can I Target?

Page 13: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

So I

Can?

Page 14: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

<canvas id=“angry-bird”/>

Page 15: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

What the client wanted... •Simple promo/reference app

•Needed AppStore

•Wanted a Native Phone app

•Use platform services (phone)

Page 16: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Let’s Build it! •Use PhoneGap for App Shell

•Add a UI Framework + CSS3

•Add Device Caps

•Deploy to the AppStore & Retire!

Page 17: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Choosing a UI framework

Page 18: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

The Markup… <div data-role="page">

<div data-role="header">...</div>

<div data-role="content">...

<div data-role="footer">...</div>

</div>

Page 19: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Add Media Queries <link rel="stylesheet" type="text/css" media="only screen and

(min-device-width: 768px) and (max-device-width: 1024px)"

href=“layout-tablet.css" />

@media only screen and (min-device-width: 768px) {

#m-branding-pad {

min-height: 205px;

}

}

Page 20: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Calling Device APIs function fetchImage(ele) { navigator.camera.getPicture(function (imageData) { var image = document.getElementById(ele); image.src = "data:image/jpeg;base64," + imageData; }, function (message) { alert('Camera Failure: ' + message); }, { quality: 25 }); }

Page 21: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Plugins

Page 22: Fake Your Way as a Mobile Developer Rockstar with PhoneGap
Page 23: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

PhoneGap Build

Page 24: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

The Experience •PhoneGap was a perfect fit

•Nearly* single source

• Emulators were close

•All platforms had their issues

Page 25: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

On AppStores…

Page 26: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Useful Resources

Page 27: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Could be handy…

https://github.com/glenasmith/phonegap-talk

Page 28: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

We’re headed…

Page 29: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Demo

Page 30: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

<wrap/>

Page 31: Fake Your Way as a Mobile Developer Rockstar with PhoneGap

Thanks for Coming!

@glen_a_smith

http://blogs.bytecode.com.au/glen