SlideShare ist ein Scribd-Unternehmen logo
1 von 43
Downloaden Sie, um offline zu lesen
September 2016
Startup	Engineering	Cookbook	for	Mobile	Apps
From	Slides	to	Mobile	App
Overview
Slide Topic
3 I	Have	This	Great	App	Idea…
4 The	Lean	Startup
5 Implementation	Options
6-9 Mobile	App	Design	Process
10-14 Mobile	App	Architecture
15-25 Backend	Architecture
26-31 Reference Architecture
32-36 Monitoring
37-38 Disaster	Recovery
39-40 Scaling
41-42 Internal	Communication
43 Questions?
I	Have	This	Great	App	Idea…
3
The	deck	will	cover	the	technologyoptions	when	going	
from	an	idea	to	building	a	mobile	app	and	beyond...
[meant	for	a	non-technical	audience]
The	Lean	Startup
4
It’s	an	approach	for	launching	businesses	
and	products,	that	relies	on	validated	
learning,	scientific	experimentation,	and	
iterative	product	releases	to	shorten	
product	development	cycles,	measure	
progress,	and	gain	valuable	customer	
feedback.
[	Wikipedia ]
It	is	THE	industry	bible	for	startups...READ	IT.
[	The	Reality	]
Implementation	Options
There	are	3	options	for	building	a	mobile	app:
Build	internally
Outsource
Hybrid	- hire	a	technical	lead
Building	a	mobile	app	is	like	the	Kama	Sutra...
there	are	many	ways	to	accomplish	“it”
5
1
2
3
Mobile	App	
Design	
Process
6
Creating	a	mobile	app	
involves	a	significant	
amount	of	upfront	design	
work	for	the	overall	look,	
feel	and	functionality	of	the
app.
Paper	Prototype
Getting	to	the	final	look	and	feel	of	an	mobile	app	requires	a	multi-
step	process.		The	first	step	is	understanding	what	the	flow	and	
functionality	will	be	of	the	mobile	app.
mobile app paper prototype
7
Our	choice:	Pencil	and	paper. It’s	free	and	works	surprising	well.
Wireframes
Wireframes	start	to	give	you	an	idea	of	what	the	mobile	app	will	contain	when	it	
comes	to	information,	navigation	and	interface	design.
mobile app wireframe tools
8
Our	choice:	Any	of	the	above	+	InVision. The	ability	to	share	designs	and	make	
comments	can	speed	up	the	design	process.
Options:	Axure,	Balsamiq,	
Flinto,	HotGloo,	
Justinmind,	MockFlow,	
Moqups,	Sketch,	Solidify	
and	UXPin
Final	Designs
After	several	rounds	of	discussion	on	the	wireframes,	you	will	have	to	lock	down	the	features	
and	flow	so	the	designer	can	deliver	the	final	screens	that	the	developers	will	need.
app design
9
Our	choice:	Let	the	designers	choose.
Options:	Adobe	Illustrator,	Adobe	Photoshop,	CorelDRAW	
and	Sketch
Creating	the	look	is	one	aspect,	the	others	include	
animations	and	interactions	the	user	will	see	on	the	screen.	
And,	what	gestures	a	user	might	need	to	perform	in	the	
app	(ex.	swipe	to	the	right).
Mobile	App
Architecture
10
This	relates	to	what	
the	user	sees	on	the	
mobile	screen.
Mobile	Phone	Platforms
There	are	really	only	two major	mobile	platforms	that	are	currently	in	use – Android	
and	iOS.
Other	options:	Blackberry and Microsoft	Windows	Phone
mobile phone platforms
11
Our	choice:	Android	and	iOS.	In	Asia,	Android	is	more	popular	but	the	tastemakers	and	
journalists	tend	to	be	on	iOS.	In	the	US	and	Europe	you	can	get	away	with	iOS	initially	then	
Android.
Development	Options
native hybrid mobile apps
12
Our	choice: It	Depends.	Native	development	brings	a	much	richer	experience	but	lately	React	
Native	is	gaining	traction	for	hybrid	development.
One	of	the	biggest	features	many	mobile	apps	are	implementing	is	the	ability	to	let	users	chat	
within	the	app.
Options:	Firebase,	Layer,	PubNub,	Pusher,	QuickBlox,	Sinch,	socket.io,	XMPP
In-App	Chat	Messaging
instant messaging
13
Our	choice:	For	an	MVP	launch	PubNub	or	Firebase	are	good.	For	the	longer	term	building	a	
chat	system	from	scratch	might	using	Socket.io be	the	right	option.
When	users	start	to	interact	with	the	app,	you	will	want	to	send	them	notifications	such	as	a	
transaction	has	been	completed	or	someone	has	liked	their	comment	or	a	password	reset	link.
4	Options:
Notifications
mobile app notifications
14
Our	choice:	It	depends	on	how	“noisy”	you	want	your	app	to	be.
In-App.	When	the	app	is	
open	and	being	used
Push.	When	the	app	is	not	
being	used,	it	will	send	a	
notification
E-mail SMS
1 2
3 4
Backend
Architecture
15
Although	the	front	end	
of	the	mobile	app	gets	
all	the	glory,	the	real	
work	is	done	behind	the	
scenes.
Mobile	Backend	as	a	Service
mobile backend service
16
Our	choice:	Firebase.	But	your	mileage	may	vary	depending	on	how	complex	your	mobile	app	
is.	A	full	scale	backend	might	be	required	if	the	app	is	complex	such	as	a	marketplace	mobile	
app.	
There	is	a	growing	trend	around	using	Mobile	Backend	as	a	Service	(MBaaS)	options.	It	simplifies	
the	backend	services	that	are	required	for	a	mobile	app	but	are	not	as	feature	rich	as	a	full	scale	
backend	service.
Options:	AnyPresence,	Appcelerator,	FeedHenry,	Firebase,	Kinvey,	Meteor,	ShepHertz
Infrastructure	Provider
If	you	opt	for	a	full	scale	backend,	those	components	must	reside	somewhere.
Options:	Amazon	Web	Services	(AWS),	Google	Cloud	Platform,	local	hosting	provider,	Microsoft	
Azure,	Netmagic,	Rackspace
web hosting services
17
Our	choice:	Amazon	Web	Services	(AWS).	They	are	the	#1	leader	in	web	infrastructure	
services	also	known	as	cloud	services.
Central	vs.	Distributed
The	old	way	of	designing	the	infrastructure	for	a	backend	was	to	put	all	the	resources	such	as	
databases,	files,	images,	etc...	on	the	same	server.	The	problem	is	if	your	database	is	slow	and	
everything	else	is	fine,	you	have	to	upgrade	the	entire	server	and	disrupt	the	other	functions.	 By	
distributing	the	resources	you	can	quickly	pinpoint	the	bottleneck	and	scale	that	particular	
resource.
distributed web architecture
Central
Our	choice:	Distributed	Architecture.
Distributed
Computing Database Static
Files
Computing,	database,	files,	etc...
18
Managed	vs.	Self-Service
If	your	team	is	technical	it	might	not	be	technical	in	terms	of	hardware.	Just	
because	someone	knows	a	programming	language	does	not	mean	they	have	the	
infrastructure	knowledge	to	run	the	backend.
Some	startups	prefer	to	outsource	the	management	of	their	hardware	to	a	
hosting	provider	or	use	the	“premium”	option	of	a	cloud	service	provider.	
Our	choice:	Self-Service. The	tools	that	are	provided	by	AWS	are	quite	powerful	
and	easy	to	use	for	managing	the	entire	AWS	infrastructure.
managed server hosting
19
Technology	Stack
The	“stack”	refers	to	a	set	of	software	components	needed	to	create	a	complete	platform.	For	
a	mobile	application	that	includes	the	operating	system,	web	server,	database	and	
programming	language.	
lamp lemp mean
20
Our	choice:	It	depends.	Several	factors	to	evaluate	include	time	to	market,	cost	and	knowledge	of	the	
technology	stack.
1 2
3 4
LAMP
Stack
LEMP
Stack
MEAN
Stack
Windows
Stack
Operating	System
There	are	only	two	options	- Microsoft	Windows	or	Linux.	Windows	is	limited	in	the	type	of	
programming	languages	that	you	can	run	on	the	server.	Linux	is	open	source	and	has	a	large	
community	that	is	continually	improving	the	operating	system.	Within	Linux	there	are	many	
versions such	as	Debian	and	Red	Hat	to	choose	from.
linux hosting
21
Software	that	delivers	information	from	the	server	to	a	mobile	app.
Options:	Apache,	Lighttpd,	Microsoft	Internet	Information	Server	(IIS),	Nginx,	Node.js,	Rails,	
Tornado
Web	Server
web servers
22
The	heart	of	any	mobile	app	is	the	database	since	it	stores	all	the	user	information	and	
everything	else	related	to	the	mobile	application.	There	are	two	categories	to	consider:	SQL	or	
NoSQL.
Options:	Amazon	DynamoDB,	Cassandra,	CouchDB,	MariaDB,	Microsoft	SQL,	MongoDB,	
MySQL,	Oracle,	PostgreSQL
Database
mysql nosql
23
If	you	ask	4	programmers	which	is	the	best	language,	you	will	most	likely	get	5	different	
answers.	
Options:	Clojure,	Express,	Java,	JavaScript,	Microsoft’s	.NET,	Perl,	PHP,	Python,	Ruby
Programming	Language
Web services backend languages
24
An	Application	Programming	Interface	(API)	is	how	the	front	end	of	the	mobile	app	
communicates	with	the	backend	to	display	information	to	the	user.	
Web	Services	Architecture
Api mobile access
25
Previously Today Future
In	the	late	1990’s,	Microsoft	
released	a	specification	called	
Simple	Object	Access	Protocol	
(SOAP).	It	used	Extensible	
Markup	Language	(XML)	to	
send	data	to	a	requesting	
endpoint.
In	the	early	2000’s	a	specification	
was	released	called	
Representational	State	Transfer	
(REST).	It	has	become	the	de	facto	
standard	to	enable	mobile	apps	to	
communicate	with	the	backend.	
It’s	commonly	referred	to	as	a	
RESTful API.
GraphQL is	a	new	nested	
query	language.	 It’s	an	open	
source	standard	published	by	
Facebook	to	enhance	the	
REST	specification.
Sample
Architecture
26
How	does	it	all	
work	together?
The	app	UI	is	
a small	piece
Mobile	App	Roles
28
Visually	creates	
the	user	interface	
(UI)	and	the	
overall	user	
experience	(UX)
Mobile
Developer
Backend	
Engineer
Operations
Engineer
App Server
UI/UX
Designer
Converts	the	
UI/UX	design	into	
Objective-C	(iOS)	
or	Java	(Android)
Converts	the	
business	logic	into	
computer	code	
using	Java,	
JavaScript,	PHP,	
Python,	PERL,	
.NET,	etc...
Manages	the	
servers,	databases,	
DNS	information,	
and		other	website	
infrastructure
Day	0
29
Elastic	Compute	
Cloud	(EC2)
t1.micro
RDS
MySQL
t1.micro
S3
Region:	APAC- Singapore
Single	Region,	Single	Availability	Zone
Users
Internet
Availability	Zone:	AP-Southeast-1a
Day	0+X
30
RDS
MySQL
S3
Internet
Database
Replication
Elastic	
Compute	
Cloud	(EC2)
RDS
MySQL
Availability	Zone:	AP-Southeast-1b
Elastic	Load	Balancer	(ELB)
S3
Elastic	
Compute	
Cloud	(EC2)
Region:	APAC- Singapore
Availability	Zone:	AP-Southeast-1a
Users
Single	Region,	Multi Availability	Zone
The	fault	tolerant	design	allows	for	one	of	the	availability	
zones	not	being	available.
RDS
MySQL
S3
Internet
RDS
MySQL
Elastic	Load	Balancer	(ELB)
S3
Day	0+2X
Availability	Zone:	US-East-1a
Elastic	
Compute	
Cloud	(EC2)
Elastic	
Compute	
Cloud	(EC2)
31
Region:	APAC- Singapore
Availability	Zone:	AP-Southeast-1a
Region:	US	East	(N.	Virginia)
Users
Multi-Region
The	fault	tolerant	design	allows	for	one	of	the	regions	not	
being	available.	The	design	also	allows	for	users	to	be	load	
balanced	based	on	geographic	location.
Monitoring
32
What	happens	when	
you	are	sleeping?
By	monitoring	the	infrastructure,	you	can	proactively	plan	if	
certain	components	need	to	be	upgraded.
Infrastructure	Performance
33
Understanding	how	the	application	affects	the	infrastructure	is	essential.	If	
there	are	very	few	users	but	the	servers	and	databases	are	consistently	
running	at	peak	utilization,	that	might	indicate	a	programming	issue.
Application	Performance
34
Google	Analytics	is	the	industry	standard	for	tracking	app	statistics	such	as	users,	usage	and	
many	other	statistics.	But	there	are	many	others	that	provide	better	mobile	user	engagement.
User	Analytics	&	Engagement
35
You	may	have	the	best	programmers	working	on	the	app,	but	testing	and	bug	
are	a	part	of	the	developmental	cycle…get	used	to	it.
Options:	BugClipper,	Crashlytics,	Crittercism,	HockeyApp,	Splunk	Mint
Testing	&	Bug	Tracking
app bug testing
36
Our	choice:	Crashlytics.	It’s	one	of	the	most	widely	used	services and	it’s	free	from	Twitter.
Disaster	
Recovery
37
If	disaster	strikes	
are	you	ready?
Having	a	disaster	recovery	plan	in	place	is	critical	to	ensure	the	website	can	recover	from	a	
catastrophic	event.
Taking	a	daily/weekly/monthly	snapshot	of	the	servers,	files	and	databases	is	a	minimum	
requirement.	The	daily/weekly/monthly	backup	schedule	is	sometimes	referred	to	as	the	
son/father/grandfather	rotation	schedule.
Backing	Up	&	Restoring
If	disaster	does	strikes	and	a	complete	
backup	strategy	is	in	place,	then	it	
should	not	be	very	difficult	to	restore	
the	website	from	the	backups	that	are	
being	maintained.
38
Scaling
39
What	happens	if	your	
mobile	app	is	an	
overnight	success?
Hopefully,	the	app	you	launch	is	a	massive	success	and	leads	to	your	backend	having	a	
tough	time	handling	the	load.
With	many	cloud	service	providers	you	can	automatically	add	additional	resources	
based	on	predefined	rules.	An	example	is	below:
Adding	Infrastructure	Resources
Rule Action
If	CPU	utilization	goes	above	
60%	during	a	5	minute	
period
Upgrade	the	server	to	the	
next	larger	size	to	handle	the	
additional	load
40
Internal	
Communication
41
How	does	your	team	
communicate?
Team	communication	is	critical	in	a	fast	paced	internet business.	There	are	two	main	categories	
that	many	of	the	tools	available	fall	into:	1.	todo	list	and	task	management	2.	instant	messaging
Team	Communications
42
Questions?
Version:	Ferrari
Manish	Jain
Co-Founder,	MProfit
@mrjain_
mrjain@gmail.com
You	can	contact	me	at	
the	coordinates	below.

Weitere ähnliche Inhalte

Was ist angesagt?

Webinar Mobile Maturity #6: Connecting Apps: Back-end and Integration
Webinar Mobile Maturity #6: Connecting Apps: Back-end and IntegrationWebinar Mobile Maturity #6: Connecting Apps: Back-end and Integration
Webinar Mobile Maturity #6: Connecting Apps: Back-end and IntegrationService2Media
 
Low Code Platforms - Ebook
Low Code Platforms - EbookLow Code Platforms - Ebook
Low Code Platforms - EbookWaveMaker, Inc.
 
Webinar Service2Media and SDL - CX Management and mobile apps
Webinar Service2Media and SDL - CX Management and mobile apps Webinar Service2Media and SDL - CX Management and mobile apps
Webinar Service2Media and SDL - CX Management and mobile apps Service2Media
 
Webinar app development & maintenance
Webinar app development & maintenanceWebinar app development & maintenance
Webinar app development & maintenanceService2Media
 
What Makes an App Great?
What Makes an App Great?What Makes an App Great?
What Makes an App Great?jamiecavanaugh
 
Appear IQ The Business Case for hybrid html5 mobile apps
Appear IQ The Business Case for hybrid html5 mobile appsAppear IQ The Business Case for hybrid html5 mobile apps
Appear IQ The Business Case for hybrid html5 mobile appsAppear
 
Dronahq one app platform 7.0
Dronahq   one app platform 7.0Dronahq   one app platform 7.0
Dronahq one app platform 7.0Jinen Dedhia
 
The business value of UX/UI
The business value of UX/UI The business value of UX/UI
The business value of UX/UI Knoldus Inc.
 
Mobile is all about touch
Mobile is all about touchMobile is all about touch
Mobile is all about touchjamiecavanaugh
 
CERTA Push Messaging - Product Launch
CERTA Push Messaging - Product Launch CERTA Push Messaging - Product Launch
CERTA Push Messaging - Product Launch Service2Media
 
Low-Code vs. Programming – It Isn’t an Either/Or Decision
Low-Code vs. Programming – It Isn’t an Either/Or DecisionLow-Code vs. Programming – It Isn’t an Either/Or Decision
Low-Code vs. Programming – It Isn’t an Either/Or DecisionAppian
 
Building Mobile Apps on aPaaS platforms
Building Mobile Apps on aPaaS platformsBuilding Mobile Apps on aPaaS platforms
Building Mobile Apps on aPaaS platformsDr Ganesh Iyer
 
Application modernization
Application modernizationApplication modernization
Application modernizationDaniel Sapir
 
Get Ready for a New kind of Customer Success
Get Ready for a New kind of Customer SuccessGet Ready for a New kind of Customer Success
Get Ready for a New kind of Customer SuccessTarik Schmidt
 
Low code application platforms
Low code application platformsLow code application platforms
Low code application platformsMatthew Weaver
 
Top UX Design Trends for 2021 – MITSD
Top UX Design Trends for 2021 – MITSDTop UX Design Trends for 2021 – MITSD
Top UX Design Trends for 2021 – MITSDMITAcademy1
 
Role of UX in a Mobile First approach @ NextStep Americas 2014
Role of UX in a Mobile First approach @ NextStep Americas 2014Role of UX in a Mobile First approach @ NextStep Americas 2014
Role of UX in a Mobile First approach @ NextStep Americas 2014Gonçalo Veiga
 
Project Management for Mobile Apps
Project Management for Mobile AppsProject Management for Mobile Apps
Project Management for Mobile AppsAlejandro Otanez
 
Techtiq blog-to-doc (1)
Techtiq blog-to-doc (1)Techtiq blog-to-doc (1)
Techtiq blog-to-doc (1)DanielDixon45
 

Was ist angesagt? (20)

Webinar Mobile Maturity #6: Connecting Apps: Back-end and Integration
Webinar Mobile Maturity #6: Connecting Apps: Back-end and IntegrationWebinar Mobile Maturity #6: Connecting Apps: Back-end and Integration
Webinar Mobile Maturity #6: Connecting Apps: Back-end and Integration
 
Low Code Platforms - Ebook
Low Code Platforms - EbookLow Code Platforms - Ebook
Low Code Platforms - Ebook
 
Webinar Service2Media and SDL - CX Management and mobile apps
Webinar Service2Media and SDL - CX Management and mobile apps Webinar Service2Media and SDL - CX Management and mobile apps
Webinar Service2Media and SDL - CX Management and mobile apps
 
Webinar app development & maintenance
Webinar app development & maintenanceWebinar app development & maintenance
Webinar app development & maintenance
 
What Makes an App Great?
What Makes an App Great?What Makes an App Great?
What Makes an App Great?
 
Appear IQ The Business Case for hybrid html5 mobile apps
Appear IQ The Business Case for hybrid html5 mobile appsAppear IQ The Business Case for hybrid html5 mobile apps
Appear IQ The Business Case for hybrid html5 mobile apps
 
Dronahq one app platform 7.0
Dronahq   one app platform 7.0Dronahq   one app platform 7.0
Dronahq one app platform 7.0
 
The business value of UX/UI
The business value of UX/UI The business value of UX/UI
The business value of UX/UI
 
Mobile is all about touch
Mobile is all about touchMobile is all about touch
Mobile is all about touch
 
CERTA Push Messaging - Product Launch
CERTA Push Messaging - Product Launch CERTA Push Messaging - Product Launch
CERTA Push Messaging - Product Launch
 
Low-Code vs. Programming – It Isn’t an Either/Or Decision
Low-Code vs. Programming – It Isn’t an Either/Or DecisionLow-Code vs. Programming – It Isn’t an Either/Or Decision
Low-Code vs. Programming – It Isn’t an Either/Or Decision
 
Building Mobile Apps on aPaaS platforms
Building Mobile Apps on aPaaS platformsBuilding Mobile Apps on aPaaS platforms
Building Mobile Apps on aPaaS platforms
 
Application modernization
Application modernizationApplication modernization
Application modernization
 
Get Ready for a New kind of Customer Success
Get Ready for a New kind of Customer SuccessGet Ready for a New kind of Customer Success
Get Ready for a New kind of Customer Success
 
Low code application platforms
Low code application platformsLow code application platforms
Low code application platforms
 
Top UX Design Trends for 2021 – MITSD
Top UX Design Trends for 2021 – MITSDTop UX Design Trends for 2021 – MITSD
Top UX Design Trends for 2021 – MITSD
 
Role of UX in a Mobile First approach @ NextStep Americas 2014
Role of UX in a Mobile First approach @ NextStep Americas 2014Role of UX in a Mobile First approach @ NextStep Americas 2014
Role of UX in a Mobile First approach @ NextStep Americas 2014
 
Project Management for Mobile Apps
Project Management for Mobile AppsProject Management for Mobile Apps
Project Management for Mobile Apps
 
UI & UX Engineering
UI & UX EngineeringUI & UX Engineering
UI & UX Engineering
 
Techtiq blog-to-doc (1)
Techtiq blog-to-doc (1)Techtiq blog-to-doc (1)
Techtiq blog-to-doc (1)
 

Andere mochten auch

10 Things about Aadhaar
10 Things about Aadhaar10 Things about Aadhaar
10 Things about AadhaarManish Jain
 
Build the future of mobile apps with facebook mobile app europe berlin sept 14
Build the future of mobile apps with facebook   mobile app europe berlin sept 14Build the future of mobile apps with facebook   mobile app europe berlin sept 14
Build the future of mobile apps with facebook mobile app europe berlin sept 14Julien Lesaicherre
 
Training Webinar: Troubleshooting Mobile Apps Performance
Training Webinar: Troubleshooting Mobile Apps Performance Training Webinar: Troubleshooting Mobile Apps Performance
Training Webinar: Troubleshooting Mobile Apps Performance OutSystems
 
The Road to Financial Freedom
The Road to Financial FreedomThe Road to Financial Freedom
The Road to Financial FreedomManish Jain
 
Build Amazing Mobile Apps using HTML5, CSS3 and JavaScript - - MeeGo Confere...
Build Amazing Mobile Apps using HTML5, CSS3 and JavaScript -  - MeeGo Confere...Build Amazing Mobile Apps using HTML5, CSS3 and JavaScript -  - MeeGo Confere...
Build Amazing Mobile Apps using HTML5, CSS3 and JavaScript - - MeeGo Confere...Raj Lal
 
Die Leichtigkeit des Seins: Bindings für Eclipse SmartHome entwickeln
Die Leichtigkeit des Seins: Bindings für Eclipse SmartHome entwickelnDie Leichtigkeit des Seins: Bindings für Eclipse SmartHome entwickeln
Die Leichtigkeit des Seins: Bindings für Eclipse SmartHome entwickelnQAware GmbH
 
Revenue model for cooking app
Revenue model for cooking appRevenue model for cooking app
Revenue model for cooking appAlfacentavra
 
Predictive Analytics - Big Data & Artificial Intelligence
Predictive Analytics - Big Data & Artificial IntelligencePredictive Analytics - Big Data & Artificial Intelligence
Predictive Analytics - Big Data & Artificial IntelligenceManish Jain
 
Better Product Definition with Lean UX and Design Thinking
Better Product Definition with Lean UX and Design ThinkingBetter Product Definition with Lean UX and Design Thinking
Better Product Definition with Lean UX and Design ThinkingJeff Gothelf
 
Introduction to Firebase
Introduction to FirebaseIntroduction to Firebase
Introduction to FirebaseMustafa Şenel
 
Presentation for Cooking App
Presentation for Cooking AppPresentation for Cooking App
Presentation for Cooking AppTommy Roberts
 
Firebase - cloud based real time database
Firebase - cloud based real time databaseFirebase - cloud based real time database
Firebase - cloud based real time databaseGlenn Bech
 
A Brief Guide to Service Design (UX Brighton) by Paul Thurston & Nick Marsh
A Brief Guide to Service Design (UX Brighton) by Paul Thurston & Nick MarshA Brief Guide to Service Design (UX Brighton) by Paul Thurston & Nick Marsh
A Brief Guide to Service Design (UX Brighton) by Paul Thurston & Nick MarshHarry Brignull
 
Nest Thermostat
Nest ThermostatNest Thermostat
Nest Thermostatchaegawoon
 
Welcome to User Experience (UX) Design at EMBL-EBI
Welcome to User Experience (UX) Design at EMBL-EBI Welcome to User Experience (UX) Design at EMBL-EBI
Welcome to User Experience (UX) Design at EMBL-EBI EMBL-EBI Web Development
 
Installing WordPress on AWS
Installing WordPress on AWSInstalling WordPress on AWS
Installing WordPress on AWSManish Jain
 
UX Design Process | Sample Proposal
UX Design Process | Sample Proposal UX Design Process | Sample Proposal
UX Design Process | Sample Proposal Marta Fioni
 
Design a UX resume that will get you hired
Design a UX resume that will get you hiredDesign a UX resume that will get you hired
Design a UX resume that will get you hiredKim Bieler
 

Andere mochten auch (20)

10 Things about Aadhaar
10 Things about Aadhaar10 Things about Aadhaar
10 Things about Aadhaar
 
Build the future of mobile apps with facebook mobile app europe berlin sept 14
Build the future of mobile apps with facebook   mobile app europe berlin sept 14Build the future of mobile apps with facebook   mobile app europe berlin sept 14
Build the future of mobile apps with facebook mobile app europe berlin sept 14
 
Training Webinar: Troubleshooting Mobile Apps Performance
Training Webinar: Troubleshooting Mobile Apps Performance Training Webinar: Troubleshooting Mobile Apps Performance
Training Webinar: Troubleshooting Mobile Apps Performance
 
The Road to Financial Freedom
The Road to Financial FreedomThe Road to Financial Freedom
The Road to Financial Freedom
 
Build Amazing Mobile Apps using HTML5, CSS3 and JavaScript - - MeeGo Confere...
Build Amazing Mobile Apps using HTML5, CSS3 and JavaScript -  - MeeGo Confere...Build Amazing Mobile Apps using HTML5, CSS3 and JavaScript -  - MeeGo Confere...
Build Amazing Mobile Apps using HTML5, CSS3 and JavaScript - - MeeGo Confere...
 
Die Leichtigkeit des Seins: Bindings für Eclipse SmartHome entwickeln
Die Leichtigkeit des Seins: Bindings für Eclipse SmartHome entwickelnDie Leichtigkeit des Seins: Bindings für Eclipse SmartHome entwickeln
Die Leichtigkeit des Seins: Bindings für Eclipse SmartHome entwickeln
 
UX design. What, how and why.
UX design. What, how and why.UX design. What, how and why.
UX design. What, how and why.
 
Revenue model for cooking app
Revenue model for cooking appRevenue model for cooking app
Revenue model for cooking app
 
Predictive Analytics - Big Data & Artificial Intelligence
Predictive Analytics - Big Data & Artificial IntelligencePredictive Analytics - Big Data & Artificial Intelligence
Predictive Analytics - Big Data & Artificial Intelligence
 
Better Product Definition with Lean UX and Design Thinking
Better Product Definition with Lean UX and Design ThinkingBetter Product Definition with Lean UX and Design Thinking
Better Product Definition with Lean UX and Design Thinking
 
Introduction to Firebase
Introduction to FirebaseIntroduction to Firebase
Introduction to Firebase
 
Presentation for Cooking App
Presentation for Cooking AppPresentation for Cooking App
Presentation for Cooking App
 
Firebase - cloud based real time database
Firebase - cloud based real time databaseFirebase - cloud based real time database
Firebase - cloud based real time database
 
A Brief Guide to Service Design (UX Brighton) by Paul Thurston & Nick Marsh
A Brief Guide to Service Design (UX Brighton) by Paul Thurston & Nick MarshA Brief Guide to Service Design (UX Brighton) by Paul Thurston & Nick Marsh
A Brief Guide to Service Design (UX Brighton) by Paul Thurston & Nick Marsh
 
Nest Thermostat
Nest ThermostatNest Thermostat
Nest Thermostat
 
Welcome to User Experience (UX) Design at EMBL-EBI
Welcome to User Experience (UX) Design at EMBL-EBI Welcome to User Experience (UX) Design at EMBL-EBI
Welcome to User Experience (UX) Design at EMBL-EBI
 
User Experience (UX) Design Tips
User Experience (UX) Design TipsUser Experience (UX) Design Tips
User Experience (UX) Design Tips
 
Installing WordPress on AWS
Installing WordPress on AWSInstalling WordPress on AWS
Installing WordPress on AWS
 
UX Design Process | Sample Proposal
UX Design Process | Sample Proposal UX Design Process | Sample Proposal
UX Design Process | Sample Proposal
 
Design a UX resume that will get you hired
Design a UX resume that will get you hiredDesign a UX resume that will get you hired
Design a UX resume that will get you hired
 

Ähnlich wie Mobile App Architecture Cookbook

The Benefits Of Software Creation
The Benefits Of Software CreationThe Benefits Of Software Creation
The Benefits Of Software CreationJennifer Wood
 
Processus de Développement des Apps Mobiles
Processus de Développement des Apps MobilesProcessus de Développement des Apps Mobiles
Processus de Développement des Apps MobilesYounesAbderrahmane
 
How to Launch Mobile Apps by Oracle Director of Product Manager
How to Launch Mobile Apps by Oracle Director of Product ManagerHow to Launch Mobile Apps by Oracle Director of Product Manager
How to Launch Mobile Apps by Oracle Director of Product ManagerProduct School
 
best-practices-to-develop-software-applications-for-startups- cuneiform.pdf
best-practices-to-develop-software-applications-for-startups- cuneiform.pdfbest-practices-to-develop-software-applications-for-startups- cuneiform.pdf
best-practices-to-develop-software-applications-for-startups- cuneiform.pdfCuneiform Consulting Pvt Ltd.
 
Webinar 2: Service2Media - Mobile Maturity Model: Initiation & design 13 Feb ...
Webinar 2: Service2Media - Mobile Maturity Model: Initiation & design 13 Feb ...Webinar 2: Service2Media - Mobile Maturity Model: Initiation & design 13 Feb ...
Webinar 2: Service2Media - Mobile Maturity Model: Initiation & design 13 Feb ...Service2Media
 
Disruption: Designing Successful Startups
Disruption: Designing Successful StartupsDisruption: Designing Successful Startups
Disruption: Designing Successful StartupsJulian Scaff
 
Quicksand Product Management Services
Quicksand Product Management ServicesQuicksand Product Management Services
Quicksand Product Management ServicesWASH For India
 
About Ebizon and Portfolio
About Ebizon and PortfolioAbout Ebizon and Portfolio
About Ebizon and PortfolioEbizon
 
Virtual Reality ( Vr ) Essay
Virtual Reality ( Vr ) EssayVirtual Reality ( Vr ) Essay
Virtual Reality ( Vr ) EssayCrystal Alvarez
 
Sunny_Personal Portfolio.pdf
Sunny_Personal Portfolio.pdfSunny_Personal Portfolio.pdf
Sunny_Personal Portfolio.pdfsunnygupta973952
 
Application Portfolio Management Strategies that Accelerate Digital Transform...
Application Portfolio Management Strategies that Accelerate Digital Transform...Application Portfolio Management Strategies that Accelerate Digital Transform...
Application Portfolio Management Strategies that Accelerate Digital Transform...Mendix
 
Designing For Interaction
Designing For Interaction Designing For Interaction
Designing For Interaction Chris Bernard
 
Designing for Interaction, Chris Bernard
Designing for Interaction, Chris BernardDesigning for Interaction, Chris Bernard
Designing for Interaction, Chris BernardBoris Loukanov
 
industrial training report
industrial training reportindustrial training report
industrial training reportLove Kothari
 
Portfolio Nicole Lobia
Portfolio Nicole Lobia Portfolio Nicole Lobia
Portfolio Nicole Lobia Nicole Lobia
 
Cross-Platform App Development
Cross-Platform App DevelopmentCross-Platform App Development
Cross-Platform App DevelopmentTechAhead Corp
 
FinishedProject
FinishedProjectFinishedProject
FinishedProjectHappyjuice
 

Ähnlich wie Mobile App Architecture Cookbook (20)

The Benefits Of Software Creation
The Benefits Of Software CreationThe Benefits Of Software Creation
The Benefits Of Software Creation
 
Processus de Développement des Apps Mobiles
Processus de Développement des Apps MobilesProcessus de Développement des Apps Mobiles
Processus de Développement des Apps Mobiles
 
How to Launch Mobile Apps by Oracle Director of Product Manager
How to Launch Mobile Apps by Oracle Director of Product ManagerHow to Launch Mobile Apps by Oracle Director of Product Manager
How to Launch Mobile Apps by Oracle Director of Product Manager
 
best-practices-to-develop-software-applications-for-startups- cuneiform.pdf
best-practices-to-develop-software-applications-for-startups- cuneiform.pdfbest-practices-to-develop-software-applications-for-startups- cuneiform.pdf
best-practices-to-develop-software-applications-for-startups- cuneiform.pdf
 
Webinar 2: Service2Media - Mobile Maturity Model: Initiation & design 13 Feb ...
Webinar 2: Service2Media - Mobile Maturity Model: Initiation & design 13 Feb ...Webinar 2: Service2Media - Mobile Maturity Model: Initiation & design 13 Feb ...
Webinar 2: Service2Media - Mobile Maturity Model: Initiation & design 13 Feb ...
 
Disruption: Designing Successful Startups
Disruption: Designing Successful StartupsDisruption: Designing Successful Startups
Disruption: Designing Successful Startups
 
Quicksand Product Management Services
Quicksand Product Management ServicesQuicksand Product Management Services
Quicksand Product Management Services
 
About Ebizon and Portfolio
About Ebizon and PortfolioAbout Ebizon and Portfolio
About Ebizon and Portfolio
 
Virtual Reality ( Vr ) Essay
Virtual Reality ( Vr ) EssayVirtual Reality ( Vr ) Essay
Virtual Reality ( Vr ) Essay
 
What is Mobile First Design Strategy.pdf
What is Mobile First Design Strategy.pdfWhat is Mobile First Design Strategy.pdf
What is Mobile First Design Strategy.pdf
 
Sunny_Personal Portfolio.pdf
Sunny_Personal Portfolio.pdfSunny_Personal Portfolio.pdf
Sunny_Personal Portfolio.pdf
 
Application Portfolio Management Strategies that Accelerate Digital Transform...
Application Portfolio Management Strategies that Accelerate Digital Transform...Application Portfolio Management Strategies that Accelerate Digital Transform...
Application Portfolio Management Strategies that Accelerate Digital Transform...
 
Designing For Interaction
Designing For Interaction Designing For Interaction
Designing For Interaction
 
Designing for Interaction, Chris Bernard
Designing for Interaction, Chris BernardDesigning for Interaction, Chris Bernard
Designing for Interaction, Chris Bernard
 
how to choose right mobile app development tools
how to choose right mobile app development toolshow to choose right mobile app development tools
how to choose right mobile app development tools
 
industrial training report
industrial training reportindustrial training report
industrial training report
 
Portfolio Nicole Lobia
Portfolio Nicole Lobia Portfolio Nicole Lobia
Portfolio Nicole Lobia
 
India General Election: A Great Display of Planning, Execution
India General Election: A Great Display of Planning, ExecutionIndia General Election: A Great Display of Planning, Execution
India General Election: A Great Display of Planning, Execution
 
Cross-Platform App Development
Cross-Platform App DevelopmentCross-Platform App Development
Cross-Platform App Development
 
FinishedProject
FinishedProjectFinishedProject
FinishedProject
 

Kürzlich hochgeladen

Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 

Kürzlich hochgeladen (20)

Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 

Mobile App Architecture Cookbook