π Happy to announce Fakt
Fakt is a Kotlin compiler plugin that uses FIR/IR phases to generate type-safe fakes at compile time β¨
Give it a try β github.com/rsicarelli/f...
π Happy to announce Fakt
Fakt is a Kotlin compiler plugin that uses FIR/IR phases to generate type-safe fakes at compile time β¨
Give it a try β github.com/rsicarelli/f...
Using the Default Hierarchy Template in KMP? You probably shouldn't π
It creates intermediate source sets you might not need β with real build cost. β οΈ
New article on the hidden costs and when to use a custom hierarchy instead π
dev.to/rsicarelli/t...
π± Two Years with Kotlin Multiplatform: From Zero to 55% Shared Code
At KotlinConfβ25, @rsicarelli.bsky.social shared how StoneCo β serving 4M+ users β scaled KMP adoption, trained 130 engineers, and achieved 55% code sharing across two large-scale mobile apps.
πΊ kotl.in/u5aa8v
We're mentioned in the Large Scale KMP adoptions π₯Ήπ₯Ή
android-developers.googleblog.com/2025/05/kotl...
Only one or the other. If the type is internal, there is no need for the annotation! We ended up building a Gradle Plugin called KMP Lint to help us on this journey (the only scalable way in our case). We plan to open source it soon π€
09.05.2025 14:15 β π 1 π 0 π¬ 0 π 0
There is a doc in the Kotlin repo on this topic: github.com/JetBrains/ko...
Yes, hacking.md π€£. Lots of outdated stuff, but an interesting read!
Also use internal and @/HiddenFromObjC annotations properly.
Over-exposing Kotlin code to objc headers increases the link time, and also the .framework size!
Kotlin 2.1 has a new linker, plus an upgrade from LLVM 11 to 16.
There is also a compiler flag to disable some optimisations, the `-Xdisable-phases', which we can use to disable the LTO optimisation.
There is a flag to profile the compiler phases (works on 2.0 too), the `-Xprofile-phases`
We ended up creating some scripts on iOS setup that selects the targets and built type for the .framework.
Pretty much, local and CI (tests) we do iosSimulatorArm64 + debug.
For internal test flight builds, we do iosArm64 + debug.
For prod, iosArm64 + release.
We avoid release at all costs π
I'm more than excited to share our KMP journey at KotlinConf'25 π
Whether you're considering KMP or scaling it in your organization, join me to hear about some of our results and future plans!
See you in Copenhagen βοΈ
Special thanks to @kaeawc.bsky.social for pointing me in the direction of using VisualVM, which has now become my best friend π
21.03.2025 11:26 β π 1 π 0 π¬ 1 π 0
FINALLY managed to understand JVM settings and how to tweak them.
Before: ~17gb allocated (Gradle + Kotlin daemons)
After: ~8gb allocated (with some extra heap for buffer)
Same build time ππ
Chegou a ver se essas libs fazem algum import especΓfico do iOS? As vezes, sΓ³ organizaΓ§Γ£o de source set jΓ‘ suportaria rs
13.03.2025 23:46 β π 0 π 0 π¬ 1 π 0Quase finalizando o KMP-102, nem acredito π
07.03.2025 15:19 β π 0 π 0 π¬ 0 π 0
π’ Novo artigo da sΓ©rie KMP-102
Dessa vez explorei estratΓ©gias de modularizaΓ§Γ£o em projetos KMP
CoraΓ§Γ£ozinho pra dar uma forΓ§a π
Boa leitura βοΈ
dev.to/rsicarelli/k...
iOS reviews β¨
24.02.2025 12:19 β π 1 π 0 π¬ 0 π 0
does KMP scale?
I think it does π
It's happening!!! π€©π #KotlinConf25
11.02.2025 20:14 β π 4 π 0 π¬ 4 π 0a beleza do conhecimento livre β¨ print aleatΓ³rio que me mandaram
11.02.2025 13:26 β π 2 π 0 π¬ 0 π 01 month of selective CI on a large Android repo saved almost 2k dollars monthly. Feels good βοΈ
29.01.2025 11:51 β π 2 π 0 π¬ 0 π 0I am just looking for a reason to buy an m4 mini π₯Ή they are so portable π€
28.01.2025 19:15 β π 0 π 0 π¬ 1 π 0I need a m4 mini at home for this ASAP
28.01.2025 15:17 β π 1 π 0 π¬ 1 π 0
O r1 se compara com o GPT o1 que custa 200 doletas mΓͺs, sΓ³ que de graΓ§a e realmente melhor
Usa um rolΓͺ de deep think, Γ© como se a AI conversasse com ela mesmo antes de te responder, poderoso d+
SΓ³ tem que ativar no chat
100% apoiado hahahahaha
Imagino que deve engajar pra galera clicar, mas comigo nΓ£o funciona rs
O vΓdeo preview vc diz reproduzir automaticamente na lista de vΓdeos?
24.01.2025 15:33 β π 0 π 0 π¬ 1 π 0
Uma das vantagens de estar sΓ³ no bsky essa Γ©poca do ano Γ© o filtro de conteΓΊdo daquele reality show 25
NΓ£o que eu nΓ£o tΓ΄ assistindo (pois Γ©) mas consumir isso o tempo todo? N obg β
Descobri que o problema tΓ‘ totalmente relacionado a construΓ§Γ£o dos Headers do Obj-C π―.
Comecei a escrever sobre o tema na sΓ©rie KMP-102, mais artigos irΓ£o vir π
dev.to/rsicarelli/k...
Heh, new insights. It turns out that we are exporting too many dependencies to XCFramework. There is no need to export everything: only what you need to consume on the Swift code.
Just applied the api/impl modularisation strategy to XCFramework and it works π will collect build time results soon
The only hope so far is Kotlin 2.1, which updates LLVM from 11.1.0 (Feb 2021) to 16.0.0 (Mar 2023).
Reading the release notes, there seems to have been serious work on linking performance π€
Had some new findings on this:
- Increasing JVM settings has no effect on build time
- The "link" task on KGP is the main issue. This task delegates the linking process to LLVM.
- xcodebuild -create-xcframework seems to have a virtual impact.
- Could not find any LLVM hack to boost CPU usage