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
Relationship between MVPs
Search
Alexandra Tritz
May 23, 2019
Programming
61
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Relationship between MVPs
Alexandra Tritz
May 23, 2019
More Decks by Alexandra Tritz
See All by Alexandra Tritz
Firebase : Remote config & A/B testing
alexandratritz
0
46
Rethinking BlaBlaCar's app architecture
alexandratritz
0
350
Feature Flags on Android At BlaBlaCar
alexandratritz
1
350
Analytics & Monitoring at BlaBlaCar
alexandratritz
0
520
Développer une app Android en 2015
alexandratritz
3
550
Other Decks in Programming
See All in Programming
DynamoDBの基礎を振り返りながらベクトル検索機能を理解する
musan
2
170
引き算の組織 ― アウトカムとAIに全振りするために辞めたこと ― / Organization by Subtraction
hirokiyamamoto14
PRO
0
290
PostgreSQL 18で考えるUUID主キー
kazuhiro1982
0
500
リアルな遅延を測る仕様
kota_yata
1
120
AWS DevOps AgentのAzure接続機能を検証して見えた活用法/Use Cases Verified for the AWS DevOps Agent's Azure Connectivity Feature
masakiokuda
1
270
Android CLI
fornewid
0
230
ドリフトを絶対に許さない(?)CDK運用 / CDK Ops with Zero Tolerance for Drifts (?)
akihisaikeda
1
220
Gmail/Google DriveをトリガーにAIエージェントを動かそう! / Run AI agents with Gmail/Google Drive as triggers!
har1101
2
430
思考垂れ流し開発 ~音声入力 × AIエージェント × 開発ハーネスによる試行錯誤~
npostring
0
130
GDG Korea Android: 2026 I/O Extended ~ What's new in Android development tools
pluu
0
240
Go 1.27からのGODEBUG / Go 1.27 リリースパーティ #go127party
mazrean
0
200
AI Engineeringは、AIプロダクトだけのものか? 〜AIがソフトウェアを作る時代の新しい当たり前〜 / No AI in your product. AI Engineering in your development.
rkaga
5
530
Featured
See All Featured
Why You Should Never Use an ORM
jnunemaker
PRO
61
10k
Noah Learner - AI + Me: how we built a GSC Bulk Export data pipeline
techseoconnect
PRO
0
400
Gemini Prompt Engineering: Practical Techniques for Tangible AI Outcomes
mfonobong
2
490
Joys of Absence: A Defence of Solitary Play
codingconduct
1
440
Neural Spatial Audio Processing for Sound Field Analysis and Control
skoyamalab
0
410
The SEO Collaboration Effect
kristinabergwall1
1
530
Taking LLMs out of the black box: A practical guide to human-in-the-loop distillation
inesmontani
PRO
3
2.4k
Rebuilding a faster, lazier Slack
samanthasiow
85
9.6k
Information Architects: The Missing Link in Design Systems
soysaucechin
1
1.1k
The Illustrated Children's Guide to Kubernetes
chrisshort
51
53k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
25
2k
DBのスキルで生き残る技術 - AI時代におけるテーブル設計の勘所
soudai
PRO
68
57k
Transcript
None
Alexandra TRITZ Laurent RUSSIER
None
TheFork Focus PVVP Listeners EventBus Listeners & Interactors Menu
None
None
TheFork 60,000 restaurants in 18 countries 14 million reviews +21
million monthly visits +16 million app downloads
TheFork team 6 android devs in 2 countries 1 shared
PO 5 iOS devs design team shared
None
TheFork
TheFork
TheFork
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
RestaurantListPresenter.kt class RestaurantListPresenterImpl : RestaurantListPresenter { fun onScroll(lastItemViewed: Int) {
restaurantListListener?.onScrolled(lastItemViewed) // internal logic } } MapPresenterImpl.kt class MapPresenterImpl : MapPresenter { fun onClickPin(pinClicked: Int) { mapListener?.onClickPin(pinClicked) // internal logic } }
RestaurantListPresenter.kt class RestaurantListPresenterImpl : RestaurantListPresenter { fun onScroll(lastItemViewed: Int) {
restaurantListListener?.onScrolled(lastItemViewed) // internal logic } } MapPresenterImpl.kt class MapPresenterImpl : MapPresenter { fun onClickPin(pinClicked: Int) { mapListener?.onClickPin(pinClicked) // internal logic } }
RestaurantListInteractor.kt interface RestaurantListInteractor { fun highlightRestaurantCard(restaurantIndex: Int) } MapInteractor.kt interface
MapInteractor { fun highlightPin(restaurantIndex: Int) }
RestaurantListInteractor.kt interface RestaurantListInteractor { fun highlightRestaurantCard(restaurantIndex: Int) } MapInteractor.kt interface
MapInteractor { fun highlightPin(restaurantIndex: Int) }
SearchPresenterImpl.kt class SearchPresenterImpl @Inject constructor( private val view: SearchView :
SearchPresenter, RestaurantListListener, MapListener { private var restaurantListInteractor: RestaurantListInteractor? = null private var mapInteractor: MapInteractor? = null override fun onScrolled(restaurantIndex: Int) { mapInteractor?.highlightPin(restaurantIndex) } override fun onClickPin(restaurantIndex: Int) { restaurantListInteractor?.highlightRestaurantCard(restaurantIndex) } }
SOLID PRINCIPLE S O L I D
None
None
None
None
None
None
Conclusion
THANK YOU !
QUESTIONS ?
Alexandra Tritz & Laurent Russier