SlideShare a Scribd company logo
The Business of IT®
www.parivedasolutions.com
Cross Platform Mobile Application Architecture
September 2013
Provo, UT
Our consulting strategy is built around developing our people into “Trusted Advisors”
2
Quality
of
Life
Variety of
Projects
Unmatched
Career
Development
Relationship
Driven
Sales
Collaborative
Environment
Limited
Travel
Transparency
Trusted
Advisors
Small
Teams
Pariveda is different from other consulting firms in the talent that we provide
We grow smart people who can combine knowledge across
functional boundaries
• We bridge the gap between business and technology
• Develop talent first, focused on your career development
Generalist instead of Specialist
• Our consultants are not deep in one subject and then flown across
the country chasing niche opportunities
• Your skills will not become obsolete or silo’d in a single technology
Relationship-driven sales
• Find business through networking
• Build our presence in the local market
Small teams to deliver complete solutions
• We strive to build small teams to take complete ownership of a
project and successfully deliver it
• Success is driven by responsibilities at all levels of the team
Earn trust of clients through successful delivery
• “Seller-doer” model
• Repeat clients are our biggest source of revenue
Clearly defined career path
• Developer → Architect → Trusted Advisor
• Judged against own merit, not percent promoted at each level
3
ASSIGNMENTDIFFICULTY
TIME
Boredom Growth Burn Out
Our people choose Pariveda because of the rewarding lifestyle
4
Pariveda
Stats
315 employees
273 consultants
9 offices
10 years old
20.3% headcount
growth in 2012
7.5% headcount
growth in 2013 so
far
24% revenue
growth in 2012
The Mobile App Developer's Dilemma
There are lots of cool mobile devices
You want to get your content onto as many as possible (or you don’t want to exclude any users)
Native Development
• Expensive (time, $$$ and support)
• High Quality user experience
• Full API support
• High cost per platform
Mobile Web App
• Restricted feature set
• Limited offline capabilities
• Missing app store marketing pull
• Supported by most if not all mobile devices
Cross-Platform Frameworks
• “Native” apps
• Lower cost per platform
• Lowest-Common API support
• App may not follow conventions of the platform
• Uncanny Valley
5
Getting the UI to “almost” match can be a very bad thing
Uncanny Valley
• Concept from robotics/AI design
• Differences that seem small add up to create subconscious dissonance
• In mobile development
- The screenshots look good but it doesn’t feel the same to use
- Usually caused by Web Views
6
See http://en.wikipedia.org/wiki/Uncanny_valley
Is the app a product in its own right, or just one of many channels by which the user
consumes your services?
The decision of which architecture strategy to use largely depends on the tradeoff between User
Experience/functionality and development cost. Two common categories of mobile apps fall on either side of
this spectrum.
Product
• The mobile application is the main product that customers use to interface with the company/system
• Improved User Experience/functionality is more likely to be worth the cost of separate native applications
• User discovery happens by word of mouth, app store search, social media ratings
• Example: Mobile game, media consumption app, specialized utility app (Speedometer, Instagram, Augmented
Reality)
Channel
• The mobile application is not the main product for customers, but rather one of many ways to interface with the
company/system
• Want to be able to reach more customers for a lower cost, no matter their mobile platform choice
• Discovery driven by other channels
• Example: Mobile ready shopping website, banking app, airline check-in/flight status app
How do you feel when you follow a link to a news site/blog and a pop-up encourages you to download their
app?
See http://martinfowler.com/articles/multiMobile/#product-or-channel
7
Architecture Layers in Mobile Apps
Partially connected mobile applications can be separated into six architectural layers
Server
Data
Client
Domain
Server
Domain
(Web Services)
Sync
8
Architecture Layers in Mobile Apps … continued
Native mobile development only shares the two server layers
Most cross-platform Mobile Enterprise Application Platforms (MEAPs), such as RhoMobile, PhoneGap and
Kony share all 6 layers, but can result in the "Uncanny Valley"
Some frameworks (Xamarin) allow us to share the 5 application layers, while writing separate user
interfaces, but they can be more toolsets/adapters than full frameworks
User-Client Layer
Client Domain
Client-Server Layer
Server Domain
Server Data
Application Presenters
SQLite DB
Client-side Value Objects
Web
Services
Adapter
Authentication
Adapter
REST Services
Content DB /
Source of Truth
User Interface
Native UI
(Android, IOS, Wi
ndows
Mobile, Blackberr
y, Website, etc)
HTML 5
RhoSync Server
UI BODY SERVER
9
Separate Native Apps for Each Platform
Pros
• Simple for IT and business to understand
• Best possible User Experience
• Less expensive when only requiring 1 or 2 platforms
• Can be listed in application store for the platform
Cons
• Each additional platform requires a lot of effort
• Many applications to maintain
• Need expertise in the native development
environment of each platform
Notes
• Need a separate strategy/framework for server-side
components. If you don’t already have a Services
Oriented Architecture this can be a major challenge
to implementation.
UI Body
UI Body
UI Body
10
Full Cross Platform Framework (Most MEAPs)
Pros
• A single application to maintain
• Each additional platform does not require much additional effort
• Can be listed in application store for the platform
• A number of platform choices available
• Simple Business/CRUD applications can be built rapidly
• Many MEAPS include server-side/sync components
Cons
• Uncanny Valley (UI feels slow/wrong on every device)
- Often achieve cross platform UI by using HTML views, in effect making your native app actually a web app in disguise
- “UI-Translation leads to fatal compromises in user-experience” – Martin Fowler
• Requires expertise in the particular Cross Platform framework of choice, and results in framework lock-in
• Restricted feature set (Lowest Common Denominator)
• Full cross-platform application development failed on the desktop (Java Swing) and is unlikely to become
mainstream in the mobile space for the same reasons
• Not ideal for applications that are graphically intensive (fine for graphs/simple animations, not for games)
Examples
• RhoMobile (Motorola Solutions)
• Titanium Appcelerator
• Kony (does allow better per platform customizations
than some others)
• Antenna AMPchroma
• PhoneGap/Cordova
• JQuery Mobile/Sencha/Dojo
• Verivo (Pyxis)
• IBM Worklight
• http://en.wikipedia.org/wiki/Multiple_phone_web_bas
ed_application_framework
UI Body
11
All but the UI Cross Platform Toolkits (AKA Separated Presentation/Portable Body)
Pros
• Allow reuse of much client code while still allowing the use of true
native controls
• Can design UI to match standards of the platform
• Can be listed in application store for the platform
• Can write unit tests for shared libraries
• Valuable when library (shared) code is likely to be extensive
Cons
• Often more of a platform rather than a full framework
(May have to write your own MVC framework, DB layer, etc)
• Require expertise in the particular toolkit chosen
• If library (shared) code is small, this strategy may introduce
unneeded overhead
• May not include server-side/sync components
Examples
• Xamarin
• Kony with Native/Hybrid views that use per platform
customization
• Calatrava
• Custom webview wrapper for each platform, libraries for business
logic/authentication/webservices written in javascript and shared.
• Mix of native and webview controls within an application (AKA
Native Veneer)
UI
UI Body
UI
12
Full Mobile Web Application (separate mobile site, or responsive design)
Pros
• Easy to access on any mobile device
• Expected functionality/look and feel is lower than a native application
• Web programming experience is common – small ramp up to transition desktop web developer to mobile web
• Some experiences are better suited to the web browser, even on mobile devices (news browsing, blog
reading, window shopping, etc.)
Cons
• Restricted feature set (not all sensors are available to a web application)
• Not able to list application in the application store for the platform
• Reduced ability to save state between sessions
Note
• Some gestures are ok, but don’t try to make a web application feel like a native application – that puts you back in
Uncanny Valley. Instead focus on following the principles of responsive web design.
13
Q&A
Questions?
14
References
Martin Fowler “Patterns of Enterprise Application Architecture”
http://www.gartner.com/technology/reprints.do?id=1-1I8627T&ct=130807&st=sb
http://xamarin.com/
http://martinfowler.com/bliki/CrossPlatformMobile.html
http://martinfowler.com/articles/multiMobile/
http://en.wikipedia.org/wiki/Multiple_phone_web_based_application_framework
http://martinfowler.com/articles/mobileImplStrategy.html
http://calatrava.github.com/
15

More Related Content

PDF
Building Cross Platform Mobile Applications
PPTX
Rapid Prototyping and Usability Testing - HUXPA
PPSX
Multiplatform App Architecture
PPSX
Cross platform mobile application architecture for enterprise
PPTX
Mobile application architecture
PDF
Agile IT: Modern Architecture for Rapid Mobile App Development
PDF
Lublin Startup Festival - Mobile Architecture Design Patterns
PPTX
Mobile applications chapter 5
Building Cross Platform Mobile Applications
Rapid Prototyping and Usability Testing - HUXPA
Multiplatform App Architecture
Cross platform mobile application architecture for enterprise
Mobile application architecture
Agile IT: Modern Architecture for Rapid Mobile App Development
Lublin Startup Festival - Mobile Architecture Design Patterns
Mobile applications chapter 5

What's hot (20)

PPTX
Mobile architecture options
PPTX
Introduction to Hybrid Application Development
PDF
Introduction to Cross-Platform Hybrid Mobile App Development
PPTX
Top 4 Cross Platform tools for Mobile App Development
PPTX
Hybrid vs Native Mobile App. Decide in 5 minutes!
PPT
Hybrid mobile app development
PDF
Native vs. Hybrid Apps
PDF
Mobile application development strategy and execution
PPT
Hybrid vs Native vs Web Apps
PDF
Native vs Hybrid - Demystifying the Technology Dilemma
PPT
On Mobile- Product Strategy
PDF
Web App VS. Hybrid App VS. Native App?
PPTX
Intro to tech stacks bonny
PPTX
Hybrid Mobile App
PDF
The Great Mobile Debate: Native vs. Hybrid App Development
PDF
Cross Platform Mobile App Development
PPSX
Mobile App Development and Xamarin as a Complete Mobile Solution
PPTX
Consider Starting Small
PPTX
IBM MobileFirst - Agile Application Infrastructure New Paradigm for new Workl...
PPT
Native, Web or Hybrid Mobile App Development?
Mobile architecture options
Introduction to Hybrid Application Development
Introduction to Cross-Platform Hybrid Mobile App Development
Top 4 Cross Platform tools for Mobile App Development
Hybrid vs Native Mobile App. Decide in 5 minutes!
Hybrid mobile app development
Native vs. Hybrid Apps
Mobile application development strategy and execution
Hybrid vs Native vs Web Apps
Native vs Hybrid - Demystifying the Technology Dilemma
On Mobile- Product Strategy
Web App VS. Hybrid App VS. Native App?
Intro to tech stacks bonny
Hybrid Mobile App
The Great Mobile Debate: Native vs. Hybrid App Development
Cross Platform Mobile App Development
Mobile App Development and Xamarin as a Complete Mobile Solution
Consider Starting Small
IBM MobileFirst - Agile Application Infrastructure New Paradigm for new Workl...
Native, Web or Hybrid Mobile App Development?
Ad

Viewers also liked (13)

PPTX
2015 XFINITY Journey CMO Council 10 23 15
PDF
Designing API Platforms that Developers Love - New York Life Build Blue May 2017
PPTX
Comcast Codebig: An API Platform & Program [my speech at the AADI conference]
PDF
Real-time systems at Twitter (Velocity 2012)
PDF
Mobile App Development
PPT
Mobile apps marketing
PDF
Mobile Application Architecture Strategy
PPTX
Mobile architecture overview
PPT
Mobile Application Development
PPTX
architecture of mobile software applications
PDF
Mobile Application Design & Development
PDF
Node Foundation Membership Overview 20160907
PDF
2015 XFINITY Journey CMO Council 10 23 15
Designing API Platforms that Developers Love - New York Life Build Blue May 2017
Comcast Codebig: An API Platform & Program [my speech at the AADI conference]
Real-time systems at Twitter (Velocity 2012)
Mobile App Development
Mobile apps marketing
Mobile Application Architecture Strategy
Mobile architecture overview
Mobile Application Development
architecture of mobile software applications
Mobile Application Design & Development
Node Foundation Membership Overview 20160907
Ad

Similar to Cross Platform Mobile Application Architecture (20)

PPTX
Mobile next 2013 petru jucovschi
PDF
Cross Platform Mobile Development
PPT
MD-I-CH-ppt.ppt
PPTX
Mobility today & what's next. Application ecosystems.
PPT
Mobile Cross Platform
PDF
How to-choose-the-right-technology-architecture-for-your-mobile-application
PDF
Rapidvalue whitepaper-howtochoosetherightarchitectureforyourmobileapplication...
PPTX
Cross Platform Mobile Application Development
PPTX
Introduction to mobile application development
PPT
Cross platform mobile application development
ODP
Synapse india reviews on asp.net mobile application
PDF
[IJCT-V3I2P36] Authors: Amarbir Singh
PDF
Fundamentals of Mobile App Development Technology
PPT
Cross Platform Mobile App Development
PPTX
Workshop 12-06 - Architectures for Enterprise Mobile Applications
PDF
Mobile development-e mag-version3
PDF
10 Key Criteria for Mobile Platform Selection
PPTX
Cross platform mobile development - you tube videos
PPTX
Mobile Application Development Unit 1.pptx
PPTX
Mobile web development
Mobile next 2013 petru jucovschi
Cross Platform Mobile Development
MD-I-CH-ppt.ppt
Mobility today & what's next. Application ecosystems.
Mobile Cross Platform
How to-choose-the-right-technology-architecture-for-your-mobile-application
Rapidvalue whitepaper-howtochoosetherightarchitectureforyourmobileapplication...
Cross Platform Mobile Application Development
Introduction to mobile application development
Cross platform mobile application development
Synapse india reviews on asp.net mobile application
[IJCT-V3I2P36] Authors: Amarbir Singh
Fundamentals of Mobile App Development Technology
Cross Platform Mobile App Development
Workshop 12-06 - Architectures for Enterprise Mobile Applications
Mobile development-e mag-version3
10 Key Criteria for Mobile Platform Selection
Cross platform mobile development - you tube videos
Mobile Application Development Unit 1.pptx
Mobile web development

Recently uploaded (20)

PPT
Teaching material agriculture food technology
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
Cloud computing and distributed systems.
PDF
KodekX | Application Modernization Development
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Approach and Philosophy of On baking technology
PDF
Machine learning based COVID-19 study performance prediction
PDF
Empathic Computing: Creating Shared Understanding
PDF
Encapsulation theory and applications.pdf
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Network Security Unit 5.pdf for BCA BBA.
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
Teaching material agriculture food technology
Diabetes mellitus diagnosis method based random forest with bat algorithm
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Cloud computing and distributed systems.
KodekX | Application Modernization Development
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
NewMind AI Monthly Chronicles - July 2025
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Per capita expenditure prediction using model stacking based on satellite ima...
Approach and Philosophy of On baking technology
Machine learning based COVID-19 study performance prediction
Empathic Computing: Creating Shared Understanding
Encapsulation theory and applications.pdf
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Dropbox Q2 2025 Financial Results & Investor Presentation
Building Integrated photovoltaic BIPV_UPV.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
Digital-Transformation-Roadmap-for-Companies.pptx
Network Security Unit 5.pdf for BCA BBA.
“AI and Expert System Decision Support & Business Intelligence Systems”

Cross Platform Mobile Application Architecture

  • 1. The Business of IT® www.parivedasolutions.com Cross Platform Mobile Application Architecture September 2013 Provo, UT
  • 2. Our consulting strategy is built around developing our people into “Trusted Advisors” 2 Quality of Life Variety of Projects Unmatched Career Development Relationship Driven Sales Collaborative Environment Limited Travel Transparency Trusted Advisors Small Teams
  • 3. Pariveda is different from other consulting firms in the talent that we provide We grow smart people who can combine knowledge across functional boundaries • We bridge the gap between business and technology • Develop talent first, focused on your career development Generalist instead of Specialist • Our consultants are not deep in one subject and then flown across the country chasing niche opportunities • Your skills will not become obsolete or silo’d in a single technology Relationship-driven sales • Find business through networking • Build our presence in the local market Small teams to deliver complete solutions • We strive to build small teams to take complete ownership of a project and successfully deliver it • Success is driven by responsibilities at all levels of the team Earn trust of clients through successful delivery • “Seller-doer” model • Repeat clients are our biggest source of revenue Clearly defined career path • Developer → Architect → Trusted Advisor • Judged against own merit, not percent promoted at each level 3 ASSIGNMENTDIFFICULTY TIME Boredom Growth Burn Out
  • 4. Our people choose Pariveda because of the rewarding lifestyle 4 Pariveda Stats 315 employees 273 consultants 9 offices 10 years old 20.3% headcount growth in 2012 7.5% headcount growth in 2013 so far 24% revenue growth in 2012
  • 5. The Mobile App Developer's Dilemma There are lots of cool mobile devices You want to get your content onto as many as possible (or you don’t want to exclude any users) Native Development • Expensive (time, $$$ and support) • High Quality user experience • Full API support • High cost per platform Mobile Web App • Restricted feature set • Limited offline capabilities • Missing app store marketing pull • Supported by most if not all mobile devices Cross-Platform Frameworks • “Native” apps • Lower cost per platform • Lowest-Common API support • App may not follow conventions of the platform • Uncanny Valley 5
  • 6. Getting the UI to “almost” match can be a very bad thing Uncanny Valley • Concept from robotics/AI design • Differences that seem small add up to create subconscious dissonance • In mobile development - The screenshots look good but it doesn’t feel the same to use - Usually caused by Web Views 6 See http://en.wikipedia.org/wiki/Uncanny_valley
  • 7. Is the app a product in its own right, or just one of many channels by which the user consumes your services? The decision of which architecture strategy to use largely depends on the tradeoff between User Experience/functionality and development cost. Two common categories of mobile apps fall on either side of this spectrum. Product • The mobile application is the main product that customers use to interface with the company/system • Improved User Experience/functionality is more likely to be worth the cost of separate native applications • User discovery happens by word of mouth, app store search, social media ratings • Example: Mobile game, media consumption app, specialized utility app (Speedometer, Instagram, Augmented Reality) Channel • The mobile application is not the main product for customers, but rather one of many ways to interface with the company/system • Want to be able to reach more customers for a lower cost, no matter their mobile platform choice • Discovery driven by other channels • Example: Mobile ready shopping website, banking app, airline check-in/flight status app How do you feel when you follow a link to a news site/blog and a pop-up encourages you to download their app? See http://martinfowler.com/articles/multiMobile/#product-or-channel 7
  • 8. Architecture Layers in Mobile Apps Partially connected mobile applications can be separated into six architectural layers Server Data Client Domain Server Domain (Web Services) Sync 8
  • 9. Architecture Layers in Mobile Apps … continued Native mobile development only shares the two server layers Most cross-platform Mobile Enterprise Application Platforms (MEAPs), such as RhoMobile, PhoneGap and Kony share all 6 layers, but can result in the "Uncanny Valley" Some frameworks (Xamarin) allow us to share the 5 application layers, while writing separate user interfaces, but they can be more toolsets/adapters than full frameworks User-Client Layer Client Domain Client-Server Layer Server Domain Server Data Application Presenters SQLite DB Client-side Value Objects Web Services Adapter Authentication Adapter REST Services Content DB / Source of Truth User Interface Native UI (Android, IOS, Wi ndows Mobile, Blackberr y, Website, etc) HTML 5 RhoSync Server UI BODY SERVER 9
  • 10. Separate Native Apps for Each Platform Pros • Simple for IT and business to understand • Best possible User Experience • Less expensive when only requiring 1 or 2 platforms • Can be listed in application store for the platform Cons • Each additional platform requires a lot of effort • Many applications to maintain • Need expertise in the native development environment of each platform Notes • Need a separate strategy/framework for server-side components. If you don’t already have a Services Oriented Architecture this can be a major challenge to implementation. UI Body UI Body UI Body 10
  • 11. Full Cross Platform Framework (Most MEAPs) Pros • A single application to maintain • Each additional platform does not require much additional effort • Can be listed in application store for the platform • A number of platform choices available • Simple Business/CRUD applications can be built rapidly • Many MEAPS include server-side/sync components Cons • Uncanny Valley (UI feels slow/wrong on every device) - Often achieve cross platform UI by using HTML views, in effect making your native app actually a web app in disguise - “UI-Translation leads to fatal compromises in user-experience” – Martin Fowler • Requires expertise in the particular Cross Platform framework of choice, and results in framework lock-in • Restricted feature set (Lowest Common Denominator) • Full cross-platform application development failed on the desktop (Java Swing) and is unlikely to become mainstream in the mobile space for the same reasons • Not ideal for applications that are graphically intensive (fine for graphs/simple animations, not for games) Examples • RhoMobile (Motorola Solutions) • Titanium Appcelerator • Kony (does allow better per platform customizations than some others) • Antenna AMPchroma • PhoneGap/Cordova • JQuery Mobile/Sencha/Dojo • Verivo (Pyxis) • IBM Worklight • http://en.wikipedia.org/wiki/Multiple_phone_web_bas ed_application_framework UI Body 11
  • 12. All but the UI Cross Platform Toolkits (AKA Separated Presentation/Portable Body) Pros • Allow reuse of much client code while still allowing the use of true native controls • Can design UI to match standards of the platform • Can be listed in application store for the platform • Can write unit tests for shared libraries • Valuable when library (shared) code is likely to be extensive Cons • Often more of a platform rather than a full framework (May have to write your own MVC framework, DB layer, etc) • Require expertise in the particular toolkit chosen • If library (shared) code is small, this strategy may introduce unneeded overhead • May not include server-side/sync components Examples • Xamarin • Kony with Native/Hybrid views that use per platform customization • Calatrava • Custom webview wrapper for each platform, libraries for business logic/authentication/webservices written in javascript and shared. • Mix of native and webview controls within an application (AKA Native Veneer) UI UI Body UI 12
  • 13. Full Mobile Web Application (separate mobile site, or responsive design) Pros • Easy to access on any mobile device • Expected functionality/look and feel is lower than a native application • Web programming experience is common – small ramp up to transition desktop web developer to mobile web • Some experiences are better suited to the web browser, even on mobile devices (news browsing, blog reading, window shopping, etc.) Cons • Restricted feature set (not all sensors are available to a web application) • Not able to list application in the application store for the platform • Reduced ability to save state between sessions Note • Some gestures are ok, but don’t try to make a web application feel like a native application – that puts you back in Uncanny Valley. Instead focus on following the principles of responsive web design. 13
  • 15. References Martin Fowler “Patterns of Enterprise Application Architecture” http://www.gartner.com/technology/reprints.do?id=1-1I8627T&ct=130807&st=sb http://xamarin.com/ http://martinfowler.com/bliki/CrossPlatformMobile.html http://martinfowler.com/articles/multiMobile/ http://en.wikipedia.org/wiki/Multiple_phone_web_based_application_framework http://martinfowler.com/articles/mobileImplStrategy.html http://calatrava.github.com/ 15