Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Type of app development
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
David Dikman
February 26, 2020
Programming
0
43
Type of app development
A 5 minutes very brief overview of types of app development and what is suited for what.
David Dikman
February 26, 2020
Tweet
Share
More Decks by David Dikman
See All by David Dikman
Hackathon app idea
ddikman
0
89
Flutter workshop
ddikman
0
55
Five approaches to testing
ddikman
1
110
Rails Enterprise book critique
ddikman
0
66
Definition of Done
ddikman
0
150
Sidekiq and background processing
ddikman
0
32
Refactoring
ddikman
0
45
Other Decks in Programming
See All in Programming
Takumiから考えるSecurity_Maturity_Model.pdf
gessy0129
1
160
どんと来い、データベース信頼性エンジニアリング / Introduction to DBRE
nnaka2992
1
330
Smarter Angular mit Transformers.js & Prompt API
christianliebel
PRO
1
100
2026-03-27 #terminalnight 変数展開とコマンド展開でターミナル作業をスマートにする方法
masasuzu
0
180
野球解説AI Agentを開発してみた - 2026/02/27 LayerX社内LT会資料
shinyorke
PRO
0
370
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
680
ロボットのための工場に灯りは要らない
watany
12
3.2k
おれのAgentic Coding 2026/03
tsukasagr
1
100
20260315 AWSなんもわからん🥲
chiilog
2
180
今からFlash開発できるわけないじゃん、ムリムリ! (※ムリじゃなかった!?)
arkw
0
150
脱 雰囲気実装!AgentCoreを良い感じにWEBアプリケーションに組み込むために
takuyay0ne
3
400
実践ハーネスエンジニアリング #MOSHTech
kajitack
7
4.3k
Featured
See All Featured
Ethics towards AI in product and experience design
skipperchong
2
240
Everyday Curiosity
cassininazir
0
180
Taking LLMs out of the black box: A practical guide to human-in-the-loop distillation
inesmontani
PRO
3
2.1k
Faster Mobile Websites
deanohume
310
31k
Impact Scores and Hybrid Strategies: The future of link building
tamaranovitovic
0
240
The Spectacular Lies of Maps
axbom
PRO
1
650
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.7k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.6k
Side Projects
sachag
455
43k
WENDY [Excerpt]
tessaabrams
9
37k
Efficient Content Optimization with Google Search Console & Apps Script
katarinadahlin
PRO
1
440
Agile Actions for Facilitating Distributed Teams - ADO2019
mkilby
0
160
Transcript
Android/iOS or other alternatives Native apps vs hybrid apps vs
progressive web apps
What is what?
Native “Original” iOS app, written in ObjectiveC or Swift “Original”
Android app, written in Java or Kotlin iOS app code and Android code completely different
Hybrid Installed as a native app Written in Javascript (usually),
ReactNative or Phonegap (etc) Same code for iOS and Android
Cross-platform Wraps native iOS or Android code (objectivec/swift/kotlin/java) Written in
3rd party language, c# (Xamarin) or Dart (Flutter) Same code for iOS and Android
PWA No app code at all App runs as a
Javascript responsive website Same code for Web, Android and iOS
Quick comparison Feature Native Hybrid Cross PWA Reuse-code (speed/cost) ✖
♂ ♂ ♂⭐ Performance ♂ ✖ ▲ ✖ Phone features (push notifications) ♂ ▲ ♂ ✖ Current team (native developers) ♂⭐ ▲ ✖ ▲
Graphically speaking Performance Quality Functionality Cheap Less functional (easy to
reuse and release) Native Cross-platform Hybrid PWA
So which is right for you? The architects answer goes:
it depends
Speed or quality? Depends on what you are building. If
you know what, and you know it will succeed and you have money to spare? Native is probably the way. Want to experiment? Look into hybrid/cross or even PWA.