SlideShare a Scribd company logo
1 of 68
Download to read offline
Kotlin Multiplatform &
Compose Multiplatform
Starter kit for pragmatics
Andrei Dotsenko
Android fan
Work with Android
for the last 10 years
Geek and digger
Like to play around
with new technologies
Traveler
Passionate about
discovering new places
About me
Love tech communities
Has been part of several
conferences and
meetups. GDG organizer
Family guy
Most of my free time
belongs to 󰙐🐶󰘲
Lived in different cultures
Has been living in
󰎴󰑆󰏃󰐮
��
��
✈
��
❤
��
⚠ DISCLAIMER ⚠
⚠ DISCLAIMER 2 ⚠
Table of contents
● Key concepts and terminology
● How does that work
● KMP & Compose - current state
● Where to start
● Building blocks
● Limitations & Challenges
● Resources
Key concepts and terminology
��
Key concepts and terminology
● Kotlin Multiplatform
● KMP (or KMM?!)
● Jetpack Compose
● Compose Multiplatform
��
How does that work
��
How does that work
Kotlin Multiplatform
How does that work
Kotlin Multiplatform
How does that work
Kotlin Multiplatform
How does that work
Kotlin Multiplatform
How does that work
Kotlin Multiplatform
How does that work
Kotlin Multiplatform for mobile targets
How does that work
⁉
How does that work
Jetpack Compose (Android)
Not a new kid on the block anymore
How does that work
Jetpack Compose (Android)
How does that work
Compose Multiplatform
How does that work
Compose Multiplatform
How does that work
Compose Multiplatform
How does that work
Compose Multiplatform
How does that work
Compose Multiplatform
How does that work
Compose Multiplatform
How does that work
expect-actual concept
How does that work
expect-actual concept
How does that work
expect-actual concept
How does that work
expect-actual concept
How does that work
expect-actual concept
KMP & Compose - current state
��
KMP & Compose - current state
��
Okay…
Where to start
��
Where to start
OR
+
+
Where to start
https://kmp.jetbrains.com/
https://github.com/Kotlin/kdoctor
Pre-configured project, that is
ready for writing shared code
Pre-configured build configurations
for both Android and iOS
Shared Kotlin code
Xcode project (with info.plist, UIkit/SwiftUI entry point)
Shared Kotlin code is added as .framework
Android-specific code (manifest, activity, etc.)
Ready for having fun
Beyond Hello World
��
Building blocks
��
Building blocks
��
Network client
DB / key-value storage
Navigation
Resources / localization
ViewModels
Native look & feel
Maps
DI
Network
��
https://github.com/terrakok/kmp-awesome
Network
��
https://github.com/terrakok/kmp-awesome
Network
��
● Ktor - mature network client by JetBrains.
Feature-rich (HTTP requests, Bearer authentication, web sockets, etc.)
● Kotlinx.serialization - multi-format (JSON, Protobuf and many more)
reflectionless serialization
● Ktorfit - Ktor-based REST API client (syntax mirrors Retrofit)
Network client
DB / key-value storage
Navigation
Resources / localization
ViewModels
Native look & feel
Maps
DI
✅
��
Building blocks
DB / key-value storage
��
● SQLDelight - powerful SQL DB, made by Block (ex. Square)
● Realm - NoSQL database
● Multiplatform Settings - key-value data storage, supports KeyChain.
Wrapper for SharedPreferences and NSUserDefaults.
Building blocks
Network client
DB / key-value storage
Navigation
Resources / localization
ViewModels
Native look & feel
Maps
DI
✅
��
✅
Navigation & ViewModels
��
● Compose Multiplatform Navigation - official solution from Jetbrains.
Familiar APIs (mirrors Jetpack Compose Navigation), but experimental and has
limitations (no deep links support, limited back handler)
● Compose Multiplatform ViewModel - official solution from Jetbrains.
Familiar APIs (mirrors Android ViewModel), but experimental and has limitations
(additional setup required for iOS and web targets)
● Decompose - library for breaking down your code into lifecycle-aware business
logic components (aka BLoC), with routing functionality.
● PreCompose - navigation, ViewModel, inspired by Jetpack Lifecycle,
ViewModel, LiveData and Navigation, provides similar (or even the same)
components
Building blocks
Network client
DB / key-value storage
Navigation
Resources / localization
ViewModels
Native look & feel
Maps
DI
✅
��
✅
✅
✅
Dependency Injection
��
● Koin - lightweight dependency injection framework. Koin is a DSL, a
light container and a pragmatic API
● Kodein - very simple and yet very useful dependency retrieval
container
Building blocks
Network client
DB / key-value storage
Navigation
Resources / localization
ViewModels
Native look & feel
Maps
DI
✅
��
✅
✅
✅
✅
Resources / localization
��
● Compose Multiplatform Resources - official solution from Jetbrains.
Experimental, has several limitations (big raw files, multi module).
Supports language, density and theme qualifiers. Custom fonts too.
● MOKO Resources - system resources manager that provides access
to the resources on iOS & Android with the support of the default
system localization
Building blocks
Network client
DB / key-value storage
Navigation
Resources / localization
ViewModels
Native look & feel
Maps
DI
✅
��
✅
✅
✅
✅ (almost)
✅
Native look & feel
��🏼
Compose Multiplatform release changelogs:
Native look & feel
��🏼
Compose Cupertino - provides various UI components for
making native-looking iOS applications, including:
● cupertino - Compose Multiplatform implementation of iOS-like
Cupertino theme and widgets
● cupertino-native - UIKit native wrappers for Cupertino Widgets.
Allows to seamlessly use some UIKit widgets for iOS
● cupertino-adaptive - adaptive theme and wrappers for Cupertino
and Material3 widgets.
● cupertino-icons-extended - more than 800 most used
monochrome Apple SF Symbols as Compose ImageVectors
● cupertino-decompose - iOS-like swipe-back animation for the
'predictive back' navigation feature (native-feeling or truly native page
transitions and swipe gestures).
Building blocks
Network client
DB / key-value storage
Navigation
Resources / localization
ViewModels
Native look & feel
Maps
DI
✅
��
✅
✅
✅
✅ (almost)
✅
��🏼
Maps
��
Wonderous Compose
Maps
��
https://github.com/ShreyashKore/wonderous_compose
Wonderous Compose - is a port of Wonderous (Flutter) in Compose
Multiplatform.
Map View demonstrates how KMP and Compose's interoperability
layer can be used to embed native UIs in Compose.
● For Android - Google Map compose library is used.
● For IOS - MKMapView is used.
● For web - Wasm Html interop library is used to draw DOM elements on canvas.
● For desktop - uses OpenStreetMap data to draw map tiles on Compose Canvas.
Building blocks
Network client
DB / key-value storage
Navigation
Resources / localization
ViewModels
Native look & feel
Maps
DI
✅
��
✅
✅
✅
✅ (almost)
✅
��🏼
��
��
Pro tip
Unofficial wizard. Creates the
project with preselected
dependencies
https://terrakok.github.io/Compose-Multiplatform-Wizard/
Limitations & Challenges
��
Limitations & Challenges
��
● Platform-specific APIs (e.g. Share Extension on iOS, in-app purchases, etc.)
No magic here 󰤇
● Compose Multiplatform iOS performance != native iOS performance
● Configuring build scripts and managing dependencies is an adventure
● Mac is required for building iOS or MacOS targets
● Wouldn’t recommend for beginners with no Android or iOS experience
● Under active development
● Best practices have not yet been settled
● (sometimes) It’s hard to convince iOS devs to try it out
Resources
��
● https://www.jetbrains.com/help/kotlin-multiplatform-dev/
● https://github.com/Kotlin/kdoctor
● https://github.com/ShreyashKore/wonderous_compose
● https://github.com/terrakok/kmp-awesome
● https://github.com/touchlab
● https://terrakok.github.io/Compose-Multiplatform-Wizard/
● https://youtu.be/FWVi4aV36d8?si=AfMmlVhkojU7j5j6
● https://youtu.be/EKFdYgjCNOs
● https://medium.com/@uwaisalqadri/kotlin-multiplatform-mobile-concept-of-expect-
actual-f967d2e948ce
● https://t.me/kotlinmpp
Thank you!
��
@dosssik
linkedin.com/in/andrei-dotsenko

More Related Content

Similar to Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics

Desktop apps with node webkit
Desktop apps with node webkitDesktop apps with node webkit
Desktop apps with node webkitPaul Jensen
 
Introduction to Ionic framework
Introduction to Ionic frameworkIntroduction to Ionic framework
Introduction to Ionic frameworkShyjal Raazi
 
Introduction to Modern DevOps Technologies
Introduction to  Modern DevOps TechnologiesIntroduction to  Modern DevOps Technologies
Introduction to Modern DevOps TechnologiesKriangkrai Chaonithi
 
Ballerina Serverless with Kubeless
Ballerina Serverless with KubelessBallerina Serverless with Kubeless
Ballerina Serverless with KubelessWSO2
 
Ballerina Serverless with Kubeless
Ballerina Serverless with KubelessBallerina Serverless with Kubeless
Ballerina Serverless with KubelessBallerina
 
201507_NeoHsu_Portfolio
201507_NeoHsu_Portfolio201507_NeoHsu_Portfolio
201507_NeoHsu_PortfolioNeo Hsu
 
MongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDB
MongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDBMongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDB
MongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDBMongoDB
 
DevEx | there’s no place like k3s
DevEx | there’s no place like k3sDevEx | there’s no place like k3s
DevEx | there’s no place like k3sHaggai Philip Zagury
 
Collaborative data science and how to build a data science toolchain around n...
Collaborative data science and how to build a data science toolchain around n...Collaborative data science and how to build a data science toolchain around n...
Collaborative data science and how to build a data science toolchain around n...Moon Soo Lee
 
Introduction to Cloud Computing with Google Cloud
Introduction to Cloud Computing with Google CloudIntroduction to Cloud Computing with Google Cloud
Introduction to Cloud Computing with Google Cloudwesley chun
 
Building an E-commerce website in MEAN stack
Building an E-commerce website in MEAN stackBuilding an E-commerce website in MEAN stack
Building an E-commerce website in MEAN stackdivyapisces
 
[20200720]cloud native develoment - Nelson Lin
[20200720]cloud native develoment - Nelson Lin[20200720]cloud native develoment - Nelson Lin
[20200720]cloud native develoment - Nelson LinHanLing Shen
 
NativeScript: Cross-Platform Mobile Apps with JavaScript and Angular
NativeScript: Cross-Platform Mobile Apps with JavaScript and AngularNativeScript: Cross-Platform Mobile Apps with JavaScript and Angular
NativeScript: Cross-Platform Mobile Apps with JavaScript and AngularTodd Anglin
 
Programming for non tech entrepreneurs
Programming for non tech entrepreneursProgramming for non tech entrepreneurs
Programming for non tech entrepreneursRodrigo Gil
 
Designing flexible apps deployable to App Engine, Cloud Functions, or Cloud Run
Designing flexible apps deployable to App Engine, Cloud Functions, or Cloud RunDesigning flexible apps deployable to App Engine, Cloud Functions, or Cloud Run
Designing flexible apps deployable to App Engine, Cloud Functions, or Cloud Runwesley chun
 
Instant developer onboarding with self contained repositories
Instant developer onboarding with self contained repositoriesInstant developer onboarding with self contained repositories
Instant developer onboarding with self contained repositoriesYshay Yaacobi
 
Cross Platform Mobile App Development
Cross Platform Mobile App DevelopmentCross Platform Mobile App Development
Cross Platform Mobile App DevelopmentAnnmarie Lanesey
 
Odo improving the developer experience on OpenShift - hack & sangria
Odo   improving the developer experience on OpenShift - hack & sangriaOdo   improving the developer experience on OpenShift - hack & sangria
Odo improving the developer experience on OpenShift - hack & sangriaJorge Morales
 
Anko - The Ultimate Ninja of Kotlin Libraries?
Anko - The Ultimate Ninja of Kotlin Libraries?Anko - The Ultimate Ninja of Kotlin Libraries?
Anko - The Ultimate Ninja of Kotlin Libraries?Kai Koenig
 

Similar to Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics (20)

Desktop apps with node webkit
Desktop apps with node webkitDesktop apps with node webkit
Desktop apps with node webkit
 
Introduction to Ionic framework
Introduction to Ionic frameworkIntroduction to Ionic framework
Introduction to Ionic framework
 
Introduction to Modern DevOps Technologies
Introduction to  Modern DevOps TechnologiesIntroduction to  Modern DevOps Technologies
Introduction to Modern DevOps Technologies
 
Ballerina Serverless with Kubeless
Ballerina Serverless with KubelessBallerina Serverless with Kubeless
Ballerina Serverless with Kubeless
 
Ballerina Serverless with Kubeless
Ballerina Serverless with KubelessBallerina Serverless with Kubeless
Ballerina Serverless with Kubeless
 
201507_NeoHsu_Portfolio
201507_NeoHsu_Portfolio201507_NeoHsu_Portfolio
201507_NeoHsu_Portfolio
 
MongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDB
MongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDBMongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDB
MongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDB
 
DevEx | there’s no place like k3s
DevEx | there’s no place like k3sDevEx | there’s no place like k3s
DevEx | there’s no place like k3s
 
Collaborative data science and how to build a data science toolchain around n...
Collaborative data science and how to build a data science toolchain around n...Collaborative data science and how to build a data science toolchain around n...
Collaborative data science and how to build a data science toolchain around n...
 
Introduction to Cloud Computing with Google Cloud
Introduction to Cloud Computing with Google CloudIntroduction to Cloud Computing with Google Cloud
Introduction to Cloud Computing with Google Cloud
 
PykQuery.js
PykQuery.jsPykQuery.js
PykQuery.js
 
Building an E-commerce website in MEAN stack
Building an E-commerce website in MEAN stackBuilding an E-commerce website in MEAN stack
Building an E-commerce website in MEAN stack
 
[20200720]cloud native develoment - Nelson Lin
[20200720]cloud native develoment - Nelson Lin[20200720]cloud native develoment - Nelson Lin
[20200720]cloud native develoment - Nelson Lin
 
NativeScript: Cross-Platform Mobile Apps with JavaScript and Angular
NativeScript: Cross-Platform Mobile Apps with JavaScript and AngularNativeScript: Cross-Platform Mobile Apps with JavaScript and Angular
NativeScript: Cross-Platform Mobile Apps with JavaScript and Angular
 
Programming for non tech entrepreneurs
Programming for non tech entrepreneursProgramming for non tech entrepreneurs
Programming for non tech entrepreneurs
 
Designing flexible apps deployable to App Engine, Cloud Functions, or Cloud Run
Designing flexible apps deployable to App Engine, Cloud Functions, or Cloud RunDesigning flexible apps deployable to App Engine, Cloud Functions, or Cloud Run
Designing flexible apps deployable to App Engine, Cloud Functions, or Cloud Run
 
Instant developer onboarding with self contained repositories
Instant developer onboarding with self contained repositoriesInstant developer onboarding with self contained repositories
Instant developer onboarding with self contained repositories
 
Cross Platform Mobile App Development
Cross Platform Mobile App DevelopmentCross Platform Mobile App Development
Cross Platform Mobile App Development
 
Odo improving the developer experience on OpenShift - hack & sangria
Odo   improving the developer experience on OpenShift - hack & sangriaOdo   improving the developer experience on OpenShift - hack & sangria
Odo improving the developer experience on OpenShift - hack & sangria
 
Anko - The Ultimate Ninja of Kotlin Libraries?
Anko - The Ultimate Ninja of Kotlin Libraries?Anko - The Ultimate Ninja of Kotlin Libraries?
Anko - The Ultimate Ninja of Kotlin Libraries?
 

Recently uploaded

Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 

Recently uploaded (20)

Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 

Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics