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
The New Era of Android Development - IDCamp x K...
Search
Ahmad Arif Faizin
May 28, 2023
Programming
0
52
The New Era of Android Development - IDCamp x Kadin 2023
Presented for Offline Training Android Dev @Medan
Ahmad Arif Faizin
May 28, 2023
Tweet
Share
More Decks by Ahmad Arif Faizin
See All by Ahmad Arif Faizin
BDD 2024 - Automate Dependency Management in a Scalable Way with Gradle Version Catalog
arifaizin
0
110
Tips & Trik Menghabiskan Task dengan Automa
arifaizin
0
3
The Opportunity of a Digital World - Dicoding Career Fair 2023
arifaizin
0
60
Bringing Machine Learning in Android with MediaPipe - DroidJam 2023
arifaizin
2
620
Building Mobile Apps for People | IDCamp x KADIN 2023
arifaizin
0
54
Adaptive Layout for Any Screen with Jetpack Compose [Dicoding Developer Conference]
arifaizin
1
460
Convert Figma Design to Compose Code with Relay - DevFest Bandung 2022
arifaizin
0
850
Deep Dive in Compose Layout, Lazy Layout, and Material Design 3 - Compose Camp x Juara Android
arifaizin
2
450
Membangun Modern App dengan Jetpack & Android Architecture Component - SIGMATECH
arifaizin
0
69
Other Decks in Programming
See All in Programming
フロントエンドの現在地とこれから
koba04
10
4.2k
M5Stack に色々な M5ユニットをつないで扱う為の新たなアプローチ
gob
0
200
Pydantic x Database API:turu-pyの開発
yassun7010
1
510
C#および.NETに対する誤解をひも解く
ymd65536
0
230
GitHub Copilot Workspace で我々のアプリ開発がどう変わるのか?
shuyakinjo
0
860
Beyond the RuboCop Defaults
koic
2
490
Kotlin Multiplatform at Stable and Beyond (Kotlin Vienna, October 2024)
zsmb
2
330
RemixとCloudflare Stack におけるFile Upload
ossamoon
1
120
XP2024 っていう国際会議に行ってきたよの記 / XP2024 Conference Report
bonotake
4
180
自分だけの世界を創るクリエイティブコーディング / Creative Coding: Creating Your Own World
chobishiba
2
460
Frontend Magic mit CSS Houdini
joergneumann
0
420
モジュラモノリス、その前に / Modular monolith, before that
euglena1215
6
630
Featured
See All Featured
Fireside Chat
paigeccino
32
2.9k
RailsConf 2023
tenderlove
28
840
Web Components: a chance to create the future
zenorocha
310
42k
What’s in a name? Adding method to the madness
productmarketing
PRO
22
3.1k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
2
220
How GitHub Uses GitHub to Build GitHub
holman
473
290k
How to name files
jennybc
77
99k
Intergalactic Javascript Robots from Outer Space
tanoku
268
27k
Building Your Own Lightsaber
phodgson
102
6k
Building a Scalable Design System with Sketch
lauravandoore
459
32k
Fontdeck: Realign not Redesign
paulrobertlloyd
81
5.2k
Visualization
eitanlees
143
15k
Transcript
The New Era of Android Development Ahmad Arif Faizin Curriculum
Developer
None
None
Android Studio
Android Studio Bot 🤖
Device Mirroring 🪞 • File > Settings > Tools >
Device Mirroring • Enable mirroring of physical Android devices. • Bye bye Visor~
App Quality Insights 🪲
New UI 😎
Kotlin
None
Explicit Fields ✨
Kotlin DSL 🪶 • All in one language • More
readable • Better compile-time checking
Hints & Documentation 💖
Version Catalog 📖 // build.gradle.kts plugins { alias(libs.plugins.com.android.application) alias(libs.plugins.org.jetbrains.kotlin.android) id("com.google.devtools.ksp")
} ... dependencies { implementation(libs.core.ktx) implementation(libs.appcompat) } // libs.version.toml [versions] com-android-application = "8.1.0-alpha11" org-jetbrains-kotlin-android = "1.8.0" core-ktx = "1.9.0" appcompat = "1.4.1" [libraries] core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "core-ktx" } appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" } [plugins] com-android-application = { id = "com.android.application", version.ref = "com-android-application" } org-jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "org-jetbrains-kotlin-android" }
Kapt to KSP 🫣
Android Jetpack
Architecture Libraries and Guidance 🗝
Recommendation 👌 https://developer.android.com/topic /architecture/recommendations
Modularization 🪱
Dependency Injection 💉
None
Jetpack Compose
None
Look at the new Project Template 👀
Jetpack Compose is Android’s recommended modern toolkit for building native
UI. It simplifies and accelerates UI development on Android. Quickly bring your app to life with less code, declarative Kotlin APIs, powerful tools, and backward compatible.
Construct UI by describing what, not how.
XML Vs Compose 💥 <!-- activity_main.xml --> <FrameLayout> <RecyclerView android:id=”@+id/listNews”
... /> <TextView android:id=”@+id/textError”.../> </FrameLayout> // Activity.kt val listNews = findViewById(R.id.listNews) val textError = findViewById(R.id.textError) if (data.size > 0){ listNews.visibility = View.VISIBLE textError.visibility = View.GONE } else { listNews.visibility = View.GONE textError.visibility = View.VISIBLE } // Activity.kt @Composable fun NewsScreen(newsList: List<News>) { if (newsList.size > 0){ Column { for (title in newsList){ Text(text = title) } } } else { Text(text = "No Data!") } }
Material You
None
Look (again) at the new Project Template 👀👀
M2 vs M3 💥
None
None
None
Conclusion 🎁 d.android.com/modern-android-development
“All you need is the plan, the road map, and
the courage to press on to your destination.” Earl Nightingale
Thank you