SlideShare a Scribd company logo
Presentation Title | Month 2012 | 1
Lessons Learned in Developing for the Smallest Screen
- Smart Watches
Adrian Lee-Kwen
Android Software Inventor
@augmentedtraff
Robert Heese
@smartwatchplus
Presentation Title | Month 2012 | 3
• Smart Watches Overview
• Use Cases
• Android Specific Discussions
• Lessons Learned – Augmented SmartWatch Pro
• iOS Specific Discussions (Robert)
• Lessons Learned - SmartWatch+ (Robert)
Overview
Presentation Title | Month 2012 | 4
Smart Watches – Key Factors to Consider
• Environmental
• Battery Life
• Connectivity
• Software Capability
• At a glance / Hands-free
Presentation Title | Month 2012 | 5
Smart Watches – Environmental
• Outdoor Readability
• Water Resistance
• Durability
• Quality of hardware
Presentation Title | Month 2012 | 6
Smart Watches – Battery Life
• How often do we need to charge them
• Varies from a couple days (Sony) to a week (Pebble)
to a few months/year (G-Shock)
• Type of charger
Presentation Title | Month 2012 | 7
Smart Watches – Connectivity
• Do they need to connect directly to Smart Phones or
does it work as a stand-alone?
• Reliability of connection
• Inter-operability with Bluetooth – which may vary
depending on Android version/vendor
• Stability over time – requires a reboot
• iOS or Android?
• Sony is Android only
• Support may vary between iOS and Android
• Wifi 3/4G Bluetooth
Presentation Title | Month 2012 | 8
Smart Watches – Software Capability
• Typically the hardware is more advanced than the software
• Software needs to catch up
• Vendor’s focus may be hardware
• Software quality
• Many subtle issues (especially on Android)
• Getting send/subject/preview of email
• Accessibility bug in Samsung
• Grabbing notification info from 3rd party app
Presentation Title | Month 2012 | 9
Smart Watches – At a Glance & Hands-Free
• Always on watch
• Dynamic info
• Highly Personal &
• Contextually Aware
• Vibration and notification alerts
Presentation Title | Month 2012 | 10
One Watch-face – Changes over 24 hours
Presentation Title | Month 2012 | 11
Sony SW2
© 2012, Genesys Telecommunications Laboratories, Inc. All rights reserved.
Presentation Title | Month 2012 | 12
MotoACTV Pebble MetaWatch Sony
SmartWatch 2
(SW2)
Sony SmartWatch 1
(MN1)
Environmental ***** *** *** ***** **
Battery * **** *** *** **
Connectivity ** *** ** **** ***
Software
Capability
* ***** ** **** *****
“At a glance” &
Hands-Free
** **** **** *** ***
Overall ** **** *** **** ***
Presentation Title | Month 2012 | 13
Smart Watches – Killer Use Cases?
• Real-time Notifications
• “Hands-Free” and “At a Glance”
• Real-time Control – phone calls, music, home
automation, Powerpoint/Chromecast on remote PC
• Use case - two watches connect to the same Android
• Accessibility
Presentation Title | Month 2012 | 14
Smart Watches – Killer Use Cases?
• Swappable
watch bands
• NMA vs IMO
Presentation Title | Month 2012 | 18
• Challenges
• Opportunities
• Pebble Development
• Sony Development
• Augmented SmartWatch Pro Architecture
• Canvas & Augmented – Plug-in Architecture for Pebble
Presentation Title | Month 2012 | 19
Android Specific Challenges
• Something simple like getting sender/subject from an email is
not so simple:
• Multiple apps for email (Gmail, K9, Exchange, Touchdown,
Enhanced Mail, …)
• Multiple Versions of the Email App
• Multiple Versions of Android
• Multiple methods of getting Notification info in Android
• 1st Email vs 2nd unread email
Presentation Title | Month 2012 | 20
Android Opportunity
• Multiple Methods of Extracting Notification info
• Varies by app/version/Android
• At least 4 methods (including reading app DB via root)
• Ability to “Optimize for specific Apps”
• Filter out duplicates (Spotify)
• Filter out frequent updates (Google Navigation)
• Filter out “noise” ongoing call notifications (Skype, Viber)
• Ability to reformat info to condense into Smart Watch Limited
Space:
• Remove Special Characters/Spaces
• Reformat with pertinent info at the start (Google Now)
Presentation Title | Month 2012 | 21
Android - Pebble Specific
• 3rd Software Ecosystem –Pebble biggest’s advantage
• Three Software Models:
• Android App – communicate via Intents to Pebble software
• Can send notifications to Pebble or override the music
app info
• 2-way info possible only via Music App (buttons via BT)
• Pebble Watchface App – Runs on Pebble watch using
Pebble SDK
• Best for 2-way control, flexibility
• Need to develop in C
• Hybrid – Combination of the two
Presentation Title | Month 2012 | 22
Android - Pebble Specific
• Canvas Watch-Face – 3rd Party Plug-in approach
• 1-way only (send info to Pebble)
• Innovative approach
• Suggestion to 3rd Party Developers
• Plug-in approach as Canvas but as a Pebble App to
allow 2-way communication
Presentation Title | Month 2012 | 23
Android – Sony Specific
• Android App only via Sony SDK
• Render a bitmap/layouts -> sent to Sony Watch for display
• Touch/button input (swipe, double tap, position-sensitive)
• No programmatic access to side button
• Concept of widget vs App mode – no vibration in widget
• Colour advantage
• Issues
• Touch is not as reliable as buttons
• SmartWatch 1 display is not viewable in sunlight
• Initially “at a glance and hands free” difficult to implement
Presentation Title | Month 2012 | 24
Android – Sony Specific
• Initially – auto display of any bitmap challenging to do
• Show Icon was the most common approach – not hands-
free
• It is possible to do this:
Intent i = new Intent(Control.Intents.CONTROL_START_REQUEST_INTENT);
i.putExtra(Control.Intents.EXTRA_AEA_PACKAGE_NAME,whichApp);
if (Utils.isSonyWirelessHeadsetRunning(this))
i.setPackage("com.sonyericsson.extras.smartwirelessheadsetpro");
else
i.setPackage("com.sonyericsson.extras.smartwatch");
sendBroadcast(i, Registration.HOSTAPP_PERMISSION);
Presentation Title | Month 2012 | 25
Android – Sony SmartWatch 2
• New SDK is compatible with the older watch (simultaneous
notifications and widget mode not there yet)
• 220x176 display resolution
• Will scale up the older 128x128 apps (default)
• Highly recommended to optimize for newer display size
• Additional “buttons” accessible to app options/back
• Native support for additional building blocks (lists etc) to
rapidly build richer apps
• Lack of 3rd party APIs for Watchfaces (hence cannot be a Pebble
killer yet)
• low power mode may offer a potential solution
Presentation Title | Month 2012 | 26
Architecture of Augmented SmartWatch Pro
• Key Objectives
• Support Open APIs (both into Augmented and into other
apps)
• Concurrent Support for Multiple SmartWatches
• Integration with Tasker (Key 3rd party automation app)
Presentation Title | Month 2012 | 27
Android Broadcasts
(SMS, Incoming Calls,
Dock, Power
Connected, K9,
Alarms, Network,
Pebble Connect)
3rd Party
Apps/Tasker
Intent API
com.alk.k9.
add.action
Presentation Title | Month 2012 | 29
Pebble Canvas Plug-In Integration
• Future of the WatchFace
• Dynamic, Contextual, High Personal
• Simple APIs:
• Registration of Plug-ins
• Refresh of Data
• On-Demand Data (text or image)
• Interface Class (reuse as-is from Canvas Author, just
copy into your project)
• Provide implementation of above APIs (plus any
extensions)
• Highly recommended
Presentation Title | Month 2012 | 30
Augmented Plug-In Extensions
for Canvas
• Dynamic WatchFace based on notification content
• Dynamic Image based on sender/Notification
• Dynamic content (notification alert vs post-alert)
• Tasker/3rd party Intent API
• Multiple Asynchronous Plug-ins for Text info
• Dynamic horizontal bars – to convey state info
• Fitbit, Klout + Withings Info
Presentation Title | Month 2012 | 31
Lessons Learned
Presentation Title | Month 2012 | 32
Lessons Learned - Augmented SmartWatch Pro
• Origins of the App
• Key App Stats
• Pricing
• App Sales
Presentation Title | Month 2012 | 33
Origins - Augmented SmartWatch Pro
• Initial use case
• Sony break-thru
• Reduce Tech Support issues - > Paid app
Presentation Title | Month 2012 | 34
Android App Stats -
Presentation Title | Month 2012 | 35
Key App Stats
• Downloads – 7000+
• Installs to Downloads Ratio – 60%
• Ratings – 4.1
• No ability to determine breakdown by Smart Watch – No Analytics (on
purpose)
Presentation Title | Month 2012 | 36
Pricing an Application?
I think pricing in the Android ecosystem is weird.
If you would have charged $15 for it I wouldn’t have bought it.
Not because it’s a lot of money but because hardly anyone does that
besides the productivity suites.
…
Send me your PayPal and I’ll send you $10.
I checked and the above address isn’t registered.
Presentation Title | Month 2012 | 37
Pricing an Application?
THIS APP IS WAY WAY WAY TO OVER PRICED AND YOU INTEND TO
INCREASE IT. GET IT WORKING AT 100% PERCENT B 4 OVER PRICING
GREEDY ONE.REPLYS WILL NOT B SEEN BECAUSE THEY WILL JUST BE
HYPOCRITE RESPONSES TO BEING SCHOOLED.
Presentation Title | Month 2012 | 38
Raising the price by 60% Accelerated Downloads!
Presentation Title | Month 2012 | 39
App Sales
Tip - Appmonger app to track sales
Price Changes impact
Refunds – 17% refunds (@1 out of every 7)
Refunds after 15 minute window
Purchasing outside of Play store
Holiday sales spike?
• don’t decrease the price increase it 
Presentation Title | Month 2012 | 40
App Sales – By Day of Week & Country
Presentation Title | Month 2012 | 41
Smart Watches – Conclusions
• There is no dominant player today
• Highly personal – use cases depend on the individual
• Software is terribly lacking – hardware is advanced
• Great opportunity for developers (call to action)
@augmentedtraff

More Related Content

Similar to Lessons Learned in Developing for the Smallest Screen: Smart Watches

Android Workshop Presentation
Android Workshop PresentationAndroid Workshop Presentation
Android Workshop Presentation
NAILBITER
 
Mobility testing day_1_ppt
Mobility testing day_1_pptMobility testing day_1_ppt
Mobility testing day_1_ppt
sayhi2sudarshan
 
Basics of Android
Basics of Android Basics of Android
Basics of Android
sabi_123
 
VicEvents Mobile App May 2012
VicEvents Mobile App May 2012VicEvents Mobile App May 2012
VicEvents Mobile App May 2012
eGovernment Resource Centre
 
Android L and So Much More Webinar Slides
Android L and So Much More Webinar SlidesAndroid L and So Much More Webinar Slides
Android L and So Much More Webinar Slides
Xamarin
 
Android L and Wear overview
Android L and Wear overviewAndroid L and Wear overview
Android L and Wear overview
James Montemagno
 
Google Developer Group(GDG) DevFest Event 2012 Android talk
Google Developer Group(GDG) DevFest Event 2012 Android talkGoogle Developer Group(GDG) DevFest Event 2012 Android talk
Google Developer Group(GDG) DevFest Event 2012 Android talk
Imam Raza
 
Overview of Enterprise Mobility
Overview of Enterprise MobilityOverview of Enterprise Mobility
Overview of Enterprise Mobility
Yuvaraj Ilangovan
 
Introduction to Android Development
Introduction to Android DevelopmentIntroduction to Android Development
Introduction to Android Development
Can Elmas
 
Latest proposal project info zakat
Latest proposal project info zakatLatest proposal project info zakat
Latest proposal project info zakat
Ummi Zakiah
 
Google IO 2014 overview
Google IO 2014 overviewGoogle IO 2014 overview
Google IO 2014 overview
Bin Yang
 
Android bd
Android bdAndroid bd
Android bd
lightnrain
 
001-Mobile Application.pptx
001-Mobile Application.pptx001-Mobile Application.pptx
001-Mobile Application.pptx
AhmedDarre
 
SharePoint 2013 and the Enterprise Mobile Revolution
SharePoint 2013 and the Enterprise Mobile RevolutionSharePoint 2013 and the Enterprise Mobile Revolution
SharePoint 2013 and the Enterprise Mobile Revolution
Joel Oleson
 
Wearable Development Ecosystem
Wearable Development EcosystemWearable Development Ecosystem
Wearable Development Ecosystem
Amish Gandhi
 
Enterprise mobility for fun and profit
Enterprise mobility for fun and profitEnterprise mobility for fun and profit
Enterprise mobility for fun and profit
Joe Drumgoole
 
Enterprise Mobility for Fun and Profit
Enterprise Mobility for Fun and ProfitEnterprise Mobility for Fun and Profit
Enterprise Mobility for Fun and Profit
FeedHenry
 
Mobileuidevchallengesinnovate2012a 120607124912-phpapp02
Mobileuidevchallengesinnovate2012a 120607124912-phpapp02Mobileuidevchallengesinnovate2012a 120607124912-phpapp02
Mobileuidevchallengesinnovate2012a 120607124912-phpapp02
Alexander Muse
 
Android_Workshop
Android_WorkshopAndroid_Workshop
Android_Workshop
Senthil ACS
 
Introduction to android mobile app development.pptx
Introduction to android mobile app development.pptxIntroduction to android mobile app development.pptx
Introduction to android mobile app development.pptx
ridzah12
 

Similar to Lessons Learned in Developing for the Smallest Screen: Smart Watches (20)

Android Workshop Presentation
Android Workshop PresentationAndroid Workshop Presentation
Android Workshop Presentation
 
Mobility testing day_1_ppt
Mobility testing day_1_pptMobility testing day_1_ppt
Mobility testing day_1_ppt
 
Basics of Android
Basics of Android Basics of Android
Basics of Android
 
VicEvents Mobile App May 2012
VicEvents Mobile App May 2012VicEvents Mobile App May 2012
VicEvents Mobile App May 2012
 
Android L and So Much More Webinar Slides
Android L and So Much More Webinar SlidesAndroid L and So Much More Webinar Slides
Android L and So Much More Webinar Slides
 
Android L and Wear overview
Android L and Wear overviewAndroid L and Wear overview
Android L and Wear overview
 
Google Developer Group(GDG) DevFest Event 2012 Android talk
Google Developer Group(GDG) DevFest Event 2012 Android talkGoogle Developer Group(GDG) DevFest Event 2012 Android talk
Google Developer Group(GDG) DevFest Event 2012 Android talk
 
Overview of Enterprise Mobility
Overview of Enterprise MobilityOverview of Enterprise Mobility
Overview of Enterprise Mobility
 
Introduction to Android Development
Introduction to Android DevelopmentIntroduction to Android Development
Introduction to Android Development
 
Latest proposal project info zakat
Latest proposal project info zakatLatest proposal project info zakat
Latest proposal project info zakat
 
Google IO 2014 overview
Google IO 2014 overviewGoogle IO 2014 overview
Google IO 2014 overview
 
Android bd
Android bdAndroid bd
Android bd
 
001-Mobile Application.pptx
001-Mobile Application.pptx001-Mobile Application.pptx
001-Mobile Application.pptx
 
SharePoint 2013 and the Enterprise Mobile Revolution
SharePoint 2013 and the Enterprise Mobile RevolutionSharePoint 2013 and the Enterprise Mobile Revolution
SharePoint 2013 and the Enterprise Mobile Revolution
 
Wearable Development Ecosystem
Wearable Development EcosystemWearable Development Ecosystem
Wearable Development Ecosystem
 
Enterprise mobility for fun and profit
Enterprise mobility for fun and profitEnterprise mobility for fun and profit
Enterprise mobility for fun and profit
 
Enterprise Mobility for Fun and Profit
Enterprise Mobility for Fun and ProfitEnterprise Mobility for Fun and Profit
Enterprise Mobility for Fun and Profit
 
Mobileuidevchallengesinnovate2012a 120607124912-phpapp02
Mobileuidevchallengesinnovate2012a 120607124912-phpapp02Mobileuidevchallengesinnovate2012a 120607124912-phpapp02
Mobileuidevchallengesinnovate2012a 120607124912-phpapp02
 
Android_Workshop
Android_WorkshopAndroid_Workshop
Android_Workshop
 
Introduction to android mobile app development.pptx
Introduction to android mobile app development.pptxIntroduction to android mobile app development.pptx
Introduction to android mobile app development.pptx
 

More from FITC

Cut it up
Cut it upCut it up
Cut it up
FITC
 
Designing for Digital Health
Designing for Digital HealthDesigning for Digital Health
Designing for Digital Health
FITC
 
Profiling JavaScript Performance
Profiling JavaScript PerformanceProfiling JavaScript Performance
Profiling JavaScript Performance
FITC
 
Surviving Your Tech Stack
Surviving Your Tech StackSurviving Your Tech Stack
Surviving Your Tech Stack
FITC
 
How to Pitch Your First AR Project
How to Pitch Your First AR ProjectHow to Pitch Your First AR Project
How to Pitch Your First AR Project
FITC
 
Start by Understanding the Problem, Not by Delivering the Answer
Start by Understanding the Problem, Not by Delivering the AnswerStart by Understanding the Problem, Not by Delivering the Answer
Start by Understanding the Problem, Not by Delivering the Answer
FITC
 
Cocaine to Carrots: The Art of Telling Someone Else’s Story
Cocaine to Carrots: The Art of Telling Someone Else’s StoryCocaine to Carrots: The Art of Telling Someone Else’s Story
Cocaine to Carrots: The Art of Telling Someone Else’s Story
FITC
 
Everyday Innovation
Everyday InnovationEveryday Innovation
Everyday Innovation
FITC
 
HyperLight Websites
HyperLight WebsitesHyperLight Websites
HyperLight Websites
FITC
 
Everything is Terrifying
Everything is TerrifyingEverything is Terrifying
Everything is Terrifying
FITC
 
Post-Earth Visions: Designing for Space and the Future Human
Post-Earth Visions: Designing for Space and the Future HumanPost-Earth Visions: Designing for Space and the Future Human
Post-Earth Visions: Designing for Space and the Future Human
FITC
 
The Rise of the Creative Social Influencer (and How to Become One)
The Rise of the Creative Social Influencer (and How to Become One)The Rise of the Creative Social Influencer (and How to Become One)
The Rise of the Creative Social Influencer (and How to Become One)
FITC
 
East of the Rockies: Developing an AR Game
East of the Rockies: Developing an AR GameEast of the Rockies: Developing an AR Game
East of the Rockies: Developing an AR Game
FITC
 
Creating a Proactive Healthcare System
Creating a Proactive Healthcare SystemCreating a Proactive Healthcare System
Creating a Proactive Healthcare System
FITC
 
World Transformation: The Secret Agenda of Product Design
World Transformation: The Secret Agenda of Product DesignWorld Transformation: The Secret Agenda of Product Design
World Transformation: The Secret Agenda of Product Design
FITC
 
The Power of Now
The Power of NowThe Power of Now
The Power of Now
FITC
 
High Performance PWAs
High Performance PWAsHigh Performance PWAs
High Performance PWAs
FITC
 
Rise of the JAMstack
Rise of the JAMstackRise of the JAMstack
Rise of the JAMstack
FITC
 
From Closed to Open: A Journey of Self Discovery
From Closed to Open: A Journey of Self DiscoveryFrom Closed to Open: A Journey of Self Discovery
From Closed to Open: A Journey of Self Discovery
FITC
 
Projects Ain’t Nobody Got Time For
Projects Ain’t Nobody Got Time ForProjects Ain’t Nobody Got Time For
Projects Ain’t Nobody Got Time For
FITC
 

More from FITC (20)

Cut it up
Cut it upCut it up
Cut it up
 
Designing for Digital Health
Designing for Digital HealthDesigning for Digital Health
Designing for Digital Health
 
Profiling JavaScript Performance
Profiling JavaScript PerformanceProfiling JavaScript Performance
Profiling JavaScript Performance
 
Surviving Your Tech Stack
Surviving Your Tech StackSurviving Your Tech Stack
Surviving Your Tech Stack
 
How to Pitch Your First AR Project
How to Pitch Your First AR ProjectHow to Pitch Your First AR Project
How to Pitch Your First AR Project
 
Start by Understanding the Problem, Not by Delivering the Answer
Start by Understanding the Problem, Not by Delivering the AnswerStart by Understanding the Problem, Not by Delivering the Answer
Start by Understanding the Problem, Not by Delivering the Answer
 
Cocaine to Carrots: The Art of Telling Someone Else’s Story
Cocaine to Carrots: The Art of Telling Someone Else’s StoryCocaine to Carrots: The Art of Telling Someone Else’s Story
Cocaine to Carrots: The Art of Telling Someone Else’s Story
 
Everyday Innovation
Everyday InnovationEveryday Innovation
Everyday Innovation
 
HyperLight Websites
HyperLight WebsitesHyperLight Websites
HyperLight Websites
 
Everything is Terrifying
Everything is TerrifyingEverything is Terrifying
Everything is Terrifying
 
Post-Earth Visions: Designing for Space and the Future Human
Post-Earth Visions: Designing for Space and the Future HumanPost-Earth Visions: Designing for Space and the Future Human
Post-Earth Visions: Designing for Space and the Future Human
 
The Rise of the Creative Social Influencer (and How to Become One)
The Rise of the Creative Social Influencer (and How to Become One)The Rise of the Creative Social Influencer (and How to Become One)
The Rise of the Creative Social Influencer (and How to Become One)
 
East of the Rockies: Developing an AR Game
East of the Rockies: Developing an AR GameEast of the Rockies: Developing an AR Game
East of the Rockies: Developing an AR Game
 
Creating a Proactive Healthcare System
Creating a Proactive Healthcare SystemCreating a Proactive Healthcare System
Creating a Proactive Healthcare System
 
World Transformation: The Secret Agenda of Product Design
World Transformation: The Secret Agenda of Product DesignWorld Transformation: The Secret Agenda of Product Design
World Transformation: The Secret Agenda of Product Design
 
The Power of Now
The Power of NowThe Power of Now
The Power of Now
 
High Performance PWAs
High Performance PWAsHigh Performance PWAs
High Performance PWAs
 
Rise of the JAMstack
Rise of the JAMstackRise of the JAMstack
Rise of the JAMstack
 
From Closed to Open: A Journey of Self Discovery
From Closed to Open: A Journey of Self DiscoveryFrom Closed to Open: A Journey of Self Discovery
From Closed to Open: A Journey of Self Discovery
 
Projects Ain’t Nobody Got Time For
Projects Ain’t Nobody Got Time ForProjects Ain’t Nobody Got Time For
Projects Ain’t Nobody Got Time For
 

Recently uploaded

快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样
快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样
快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样
3a0sd7z3
 
Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...
Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...
Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...
APNIC
 
cyber crime.pptx..........................
cyber crime.pptx..........................cyber crime.pptx..........................
cyber crime.pptx..........................
GNAMBIKARAO
 
怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样
怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样
怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样
rtunex8r
 
HijackLoader Evolution: Interactive Process Hollowing
HijackLoader Evolution: Interactive Process HollowingHijackLoader Evolution: Interactive Process Hollowing
HijackLoader Evolution: Interactive Process Hollowing
Donato Onofri
 
一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理
一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理
一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理
dtagbe
 
How to make a complaint to the police for Social Media Fraud.pdf
How to make a complaint to the police for Social Media Fraud.pdfHow to make a complaint to the police for Social Media Fraud.pdf
How to make a complaint to the police for Social Media Fraud.pdf
Infosec train
 
Securing BGP: Operational Strategies and Best Practices for Network Defenders...
Securing BGP: Operational Strategies and Best Practices for Network Defenders...Securing BGP: Operational Strategies and Best Practices for Network Defenders...
Securing BGP: Operational Strategies and Best Practices for Network Defenders...
APNIC
 
一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理
一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理
一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理
thezot
 
快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样
快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样
快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样
3a0sd7z3
 
Bengaluru Dreamin' 24 - Personal Branding
Bengaluru Dreamin' 24 - Personal BrandingBengaluru Dreamin' 24 - Personal Branding
Bengaluru Dreamin' 24 - Personal Branding
Tarandeep Singh
 

Recently uploaded (11)

快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样
快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样
快速办理(新加坡SMU毕业证书)新加坡管理大学毕业证文凭证书一模一样
 
Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...
Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...
Honeypots Unveiled: Proactive Defense Tactics for Cyber Security, Phoenix Sum...
 
cyber crime.pptx..........................
cyber crime.pptx..........................cyber crime.pptx..........................
cyber crime.pptx..........................
 
怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样
怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样
怎么办理(umiami毕业证书)美国迈阿密大学毕业证文凭证书实拍图原版一模一样
 
HijackLoader Evolution: Interactive Process Hollowing
HijackLoader Evolution: Interactive Process HollowingHijackLoader Evolution: Interactive Process Hollowing
HijackLoader Evolution: Interactive Process Hollowing
 
一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理
一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理
一比一原版(uc毕业证书)加拿大卡尔加里大学毕业证如何办理
 
How to make a complaint to the police for Social Media Fraud.pdf
How to make a complaint to the police for Social Media Fraud.pdfHow to make a complaint to the police for Social Media Fraud.pdf
How to make a complaint to the police for Social Media Fraud.pdf
 
Securing BGP: Operational Strategies and Best Practices for Network Defenders...
Securing BGP: Operational Strategies and Best Practices for Network Defenders...Securing BGP: Operational Strategies and Best Practices for Network Defenders...
Securing BGP: Operational Strategies and Best Practices for Network Defenders...
 
一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理
一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理
一比一原版新西兰林肯大学毕业证(Lincoln毕业证书)学历如何办理
 
快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样
快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样
快速办理(Vic毕业证书)惠灵顿维多利亚大学毕业证完成信一模一样
 
Bengaluru Dreamin' 24 - Personal Branding
Bengaluru Dreamin' 24 - Personal BrandingBengaluru Dreamin' 24 - Personal Branding
Bengaluru Dreamin' 24 - Personal Branding
 

Lessons Learned in Developing for the Smallest Screen: Smart Watches

  • 1. Presentation Title | Month 2012 | 1 Lessons Learned in Developing for the Smallest Screen - Smart Watches Adrian Lee-Kwen Android Software Inventor @augmentedtraff Robert Heese @smartwatchplus
  • 2. Presentation Title | Month 2012 | 3 • Smart Watches Overview • Use Cases • Android Specific Discussions • Lessons Learned – Augmented SmartWatch Pro • iOS Specific Discussions (Robert) • Lessons Learned - SmartWatch+ (Robert) Overview
  • 3. Presentation Title | Month 2012 | 4 Smart Watches – Key Factors to Consider • Environmental • Battery Life • Connectivity • Software Capability • At a glance / Hands-free
  • 4. Presentation Title | Month 2012 | 5 Smart Watches – Environmental • Outdoor Readability • Water Resistance • Durability • Quality of hardware
  • 5. Presentation Title | Month 2012 | 6 Smart Watches – Battery Life • How often do we need to charge them • Varies from a couple days (Sony) to a week (Pebble) to a few months/year (G-Shock) • Type of charger
  • 6. Presentation Title | Month 2012 | 7 Smart Watches – Connectivity • Do they need to connect directly to Smart Phones or does it work as a stand-alone? • Reliability of connection • Inter-operability with Bluetooth – which may vary depending on Android version/vendor • Stability over time – requires a reboot • iOS or Android? • Sony is Android only • Support may vary between iOS and Android • Wifi 3/4G Bluetooth
  • 7. Presentation Title | Month 2012 | 8 Smart Watches – Software Capability • Typically the hardware is more advanced than the software • Software needs to catch up • Vendor’s focus may be hardware • Software quality • Many subtle issues (especially on Android) • Getting send/subject/preview of email • Accessibility bug in Samsung • Grabbing notification info from 3rd party app
  • 8. Presentation Title | Month 2012 | 9 Smart Watches – At a Glance & Hands-Free • Always on watch • Dynamic info • Highly Personal & • Contextually Aware • Vibration and notification alerts
  • 9. Presentation Title | Month 2012 | 10 One Watch-face – Changes over 24 hours
  • 10. Presentation Title | Month 2012 | 11 Sony SW2 © 2012, Genesys Telecommunications Laboratories, Inc. All rights reserved.
  • 11. Presentation Title | Month 2012 | 12 MotoACTV Pebble MetaWatch Sony SmartWatch 2 (SW2) Sony SmartWatch 1 (MN1) Environmental ***** *** *** ***** ** Battery * **** *** *** ** Connectivity ** *** ** **** *** Software Capability * ***** ** **** ***** “At a glance” & Hands-Free ** **** **** *** *** Overall ** **** *** **** ***
  • 12. Presentation Title | Month 2012 | 13 Smart Watches – Killer Use Cases? • Real-time Notifications • “Hands-Free” and “At a Glance” • Real-time Control – phone calls, music, home automation, Powerpoint/Chromecast on remote PC • Use case - two watches connect to the same Android • Accessibility
  • 13. Presentation Title | Month 2012 | 14 Smart Watches – Killer Use Cases? • Swappable watch bands • NMA vs IMO
  • 14. Presentation Title | Month 2012 | 18 • Challenges • Opportunities • Pebble Development • Sony Development • Augmented SmartWatch Pro Architecture • Canvas & Augmented – Plug-in Architecture for Pebble
  • 15. Presentation Title | Month 2012 | 19 Android Specific Challenges • Something simple like getting sender/subject from an email is not so simple: • Multiple apps for email (Gmail, K9, Exchange, Touchdown, Enhanced Mail, …) • Multiple Versions of the Email App • Multiple Versions of Android • Multiple methods of getting Notification info in Android • 1st Email vs 2nd unread email
  • 16. Presentation Title | Month 2012 | 20 Android Opportunity • Multiple Methods of Extracting Notification info • Varies by app/version/Android • At least 4 methods (including reading app DB via root) • Ability to “Optimize for specific Apps” • Filter out duplicates (Spotify) • Filter out frequent updates (Google Navigation) • Filter out “noise” ongoing call notifications (Skype, Viber) • Ability to reformat info to condense into Smart Watch Limited Space: • Remove Special Characters/Spaces • Reformat with pertinent info at the start (Google Now)
  • 17. Presentation Title | Month 2012 | 21 Android - Pebble Specific • 3rd Software Ecosystem –Pebble biggest’s advantage • Three Software Models: • Android App – communicate via Intents to Pebble software • Can send notifications to Pebble or override the music app info • 2-way info possible only via Music App (buttons via BT) • Pebble Watchface App – Runs on Pebble watch using Pebble SDK • Best for 2-way control, flexibility • Need to develop in C • Hybrid – Combination of the two
  • 18. Presentation Title | Month 2012 | 22 Android - Pebble Specific • Canvas Watch-Face – 3rd Party Plug-in approach • 1-way only (send info to Pebble) • Innovative approach • Suggestion to 3rd Party Developers • Plug-in approach as Canvas but as a Pebble App to allow 2-way communication
  • 19. Presentation Title | Month 2012 | 23 Android – Sony Specific • Android App only via Sony SDK • Render a bitmap/layouts -> sent to Sony Watch for display • Touch/button input (swipe, double tap, position-sensitive) • No programmatic access to side button • Concept of widget vs App mode – no vibration in widget • Colour advantage • Issues • Touch is not as reliable as buttons • SmartWatch 1 display is not viewable in sunlight • Initially “at a glance and hands free” difficult to implement
  • 20. Presentation Title | Month 2012 | 24 Android – Sony Specific • Initially – auto display of any bitmap challenging to do • Show Icon was the most common approach – not hands- free • It is possible to do this: Intent i = new Intent(Control.Intents.CONTROL_START_REQUEST_INTENT); i.putExtra(Control.Intents.EXTRA_AEA_PACKAGE_NAME,whichApp); if (Utils.isSonyWirelessHeadsetRunning(this)) i.setPackage("com.sonyericsson.extras.smartwirelessheadsetpro"); else i.setPackage("com.sonyericsson.extras.smartwatch"); sendBroadcast(i, Registration.HOSTAPP_PERMISSION);
  • 21. Presentation Title | Month 2012 | 25 Android – Sony SmartWatch 2 • New SDK is compatible with the older watch (simultaneous notifications and widget mode not there yet) • 220x176 display resolution • Will scale up the older 128x128 apps (default) • Highly recommended to optimize for newer display size • Additional “buttons” accessible to app options/back • Native support for additional building blocks (lists etc) to rapidly build richer apps • Lack of 3rd party APIs for Watchfaces (hence cannot be a Pebble killer yet) • low power mode may offer a potential solution
  • 22. Presentation Title | Month 2012 | 26 Architecture of Augmented SmartWatch Pro • Key Objectives • Support Open APIs (both into Augmented and into other apps) • Concurrent Support for Multiple SmartWatches • Integration with Tasker (Key 3rd party automation app)
  • 23. Presentation Title | Month 2012 | 27 Android Broadcasts (SMS, Incoming Calls, Dock, Power Connected, K9, Alarms, Network, Pebble Connect) 3rd Party Apps/Tasker Intent API com.alk.k9. add.action
  • 24. Presentation Title | Month 2012 | 29 Pebble Canvas Plug-In Integration • Future of the WatchFace • Dynamic, Contextual, High Personal • Simple APIs: • Registration of Plug-ins • Refresh of Data • On-Demand Data (text or image) • Interface Class (reuse as-is from Canvas Author, just copy into your project) • Provide implementation of above APIs (plus any extensions) • Highly recommended
  • 25. Presentation Title | Month 2012 | 30 Augmented Plug-In Extensions for Canvas • Dynamic WatchFace based on notification content • Dynamic Image based on sender/Notification • Dynamic content (notification alert vs post-alert) • Tasker/3rd party Intent API • Multiple Asynchronous Plug-ins for Text info • Dynamic horizontal bars – to convey state info • Fitbit, Klout + Withings Info
  • 26. Presentation Title | Month 2012 | 31 Lessons Learned
  • 27. Presentation Title | Month 2012 | 32 Lessons Learned - Augmented SmartWatch Pro • Origins of the App • Key App Stats • Pricing • App Sales
  • 28. Presentation Title | Month 2012 | 33 Origins - Augmented SmartWatch Pro • Initial use case • Sony break-thru • Reduce Tech Support issues - > Paid app
  • 29. Presentation Title | Month 2012 | 34 Android App Stats -
  • 30. Presentation Title | Month 2012 | 35 Key App Stats • Downloads – 7000+ • Installs to Downloads Ratio – 60% • Ratings – 4.1 • No ability to determine breakdown by Smart Watch – No Analytics (on purpose)
  • 31. Presentation Title | Month 2012 | 36 Pricing an Application? I think pricing in the Android ecosystem is weird. If you would have charged $15 for it I wouldn’t have bought it. Not because it’s a lot of money but because hardly anyone does that besides the productivity suites. … Send me your PayPal and I’ll send you $10. I checked and the above address isn’t registered.
  • 32. Presentation Title | Month 2012 | 37 Pricing an Application? THIS APP IS WAY WAY WAY TO OVER PRICED AND YOU INTEND TO INCREASE IT. GET IT WORKING AT 100% PERCENT B 4 OVER PRICING GREEDY ONE.REPLYS WILL NOT B SEEN BECAUSE THEY WILL JUST BE HYPOCRITE RESPONSES TO BEING SCHOOLED.
  • 33. Presentation Title | Month 2012 | 38 Raising the price by 60% Accelerated Downloads!
  • 34. Presentation Title | Month 2012 | 39 App Sales Tip - Appmonger app to track sales Price Changes impact Refunds – 17% refunds (@1 out of every 7) Refunds after 15 minute window Purchasing outside of Play store Holiday sales spike? • don’t decrease the price increase it 
  • 35. Presentation Title | Month 2012 | 40 App Sales – By Day of Week & Country
  • 36. Presentation Title | Month 2012 | 41 Smart Watches – Conclusions • There is no dominant player today • Highly personal – use cases depend on the individual • Software is terribly lacking – hardware is advanced • Great opportunity for developers (call to action) @augmentedtraff