> ## Content Index
> Fetch the complete content index at: https://commonmain.dev/llms.txt
> Use this file to discover other available public pages before exploring further.

# Kotlin Multiplatform Newsletter #15
- URL: https://commonmain.dev/kotlin-multiplatform-newsletter-15/
- Published: 2026-04-28T13:00:12.000Z
- Updated: 2026-06-03T15:15:02.000Z
- Author: Bogdan Codes
- Tags: Issues

We cover the launch of the Kotlin Professional Certificate by JetBrains on LinkedIn Learning and a massive $30,000 grant from the Kotlin Foundation to build a KMP Contest Starter Kit. We dive into technical deep dives on Kotlin Flows (Buffer vs. Conflate vs. Debounce), production-grade IoT network connectivity, and the art of KMP Modularization. Plus, new tools like Halogen for AI-generated Material 3 themes, ComposePdf, and a look at iShape, an AI macro tracker built with 100% Kotlin across the entire stack.

### **The Log**

The only Kotlin Multiplatform and Compose Multiplatform news you actually need to know.

🎓

[Kotlin Professional Certificate by JetBrains – Now on LinkedIn Learning](https://blog.jetbrains.com/kotlin/2026/04/kotlin-professional-certificate-by-jetbrains-now-on-linkedin-learning/?ref=commonmain.dev)  
  
JetBrains has partnered with LinkedIn Learning to offer the [Kotlin Professional Certificate](https://kotl.in/pro-cert-lil?ref=commonmain.dev). This is a structured learning path that covers the full scope of modern software development – from Kotlin essentials all the way to building full-stack, multiplatform applications for mobile, desktop, web, and backend environments.

🏆

[Create This Year’s KMP Contest Starter Kit](https://kotlinfoundation.org/news/kmp-contest-starter-kit-2026/?ref=commonmain.dev) (Kotlin Foundation)  
  
Every year, students and recent graduates compete in the Kotlin Multiplatform Contest to build apps and earn a trip to KotlinConf. To support their efforts, the Kotlin Foundation is offering a new grant for the creation of a KMP Contest Starter Kit. ****Up to $30,000 is available** to support the selected grantee in building an open source sample codebase and accompanying documentation which will be used by contest participants to jumpstart their submission.

### **The Main Thread**

Community's most insightful threads, curated from social media platforms and websites.

🌊

[Kotlin Flows: Buffer, Conflate, and Debounce](https://www.youtube.com/watch?v=rHYlUGC109I&ref=commonmain.dev)  
  
In Kotlin's Flow API, when we run our emitter and collector on different coroutines, it's possible for the emitter to outpace the collector, producing new values faster than it can consume. What happens to the values when the collector isn't ready for them? In today's video, we look at three strategies we can use for this situation.

🏄

[How we built iShape using 100% Kotlin](https://medium.com/@ofekteken/how-we-built-ishape-using-100-kotlin-43c3941aec83?ref=commonmain.dev)  
  
This is the story of how a team of two built an entire product end-to-end using one language we genuinely believe is superior: Kotlin. iOS, Android, backend, AI pipeline — all of it.

### Expect Actual

Technical deep dives, or solving the "how-the-hell-do-I-test-this" problems.

SPONSORED 

****Stop treating Kotlin like a black box! 🧠**  
  
To build truly performant multiplatform apps, writing code that just "works" isn't enough. We need to understand what the compiler is actually doing under the hood.

That’s why I highly recommend [****Practical Kotlin Deep Dive**](https://skydoves.gumroad.com/l/kotlin-deep-dive?a=705284499&ref=commonmain.dev) by skydoves. This isn't a basic syntax guide, it breaks down Kotlin internals, bytecode, and coroutines. It’s been a total game-changer for me when writing and optimizing shared code.  
  
If you want to level up your Kotlin and KMP skills to a senior standard, you need this on your desk.

[Get the Book ](https://skydoves.gumroad.com/l/kotlin-deep-dive?a=705284499&ref=commonmain.dev) 

🧩

[KMP Modularization: From Layers to Features](https://www.kmpbits.com/posts/kmp-modularization-intro?ref=commonmain.dev)  
  
A poorly organised car doesn’t fail on the drawing board. It fails in the pit lane, under pressure, when the engineer needs to make a change in three seconds and can’t find what he’s looking for. Your Kotlin Multiplatform project is no different.

🛜

[Building a Production-Grade Network Connectivity Layer in Kotlin Multiplatform: The Complete Guide for IoT Transport](https://medium.com/@mr.califer/building-a-production-grade-network-connectivity-layer-in-kotlin-multiplatform-the-complete-guide-5dfb3213d45f?ref=commonmain.dev)  
  
A deep technical walkthrough of designing and implementing a shared network monitoring system that works identically on Android and iOS — including SSID, frequency band, interface binding, subnet broadcast, and real-time reactive state — built for IoT UDP transport but applicable to any KMM project that needs to treat connectivity as a first-class concern.

### LazyColumn

Compose Multiplatform tips, tricks, and code snippets.

🪭

[Kmp Resources Unfold](https://github.com/mohamedshemees/kmp-resources-unfold?ref=commonmain.dev)  
  
Kmp Resources Unfold is a professional productivity tool designed for Android Studio and IntelliJ IDEA developers. It bridges a major gap in the IDE by providing visual management for assets across all your Kotlin Multiplatform (KMP) modules.

📄

[ComposePdf](https://github.com/kdroidFilter/ComposePdf?ref=commonmain.dev)  
  
A Kotlin Multiplatform PDF rendering and text-extraction library built on top of pdfium and Compose Multiplatform. Compose-first API, and a sample desktop/mobile reader with thumbnails, progressive rendering, and selectable text.

### The Dependency Graph

Curated libraries, tools and plugins that won't break your Gradle build.

- [**Halogen**](https://github.com/himattm/halogen?ref=commonmain.dev)  
Halogen turns natural language into complete [Material 3](https://m3.material.io/?ref=commonmain.dev) themes at runtime. Give it a prompt like "warm coffee shop" or "neon cyberpunk" and it generates colors, typography, and shapes, all cached so the LLM only runs once per prompt.
- [**FileKit**](https://github.com/vinceglb/FileKit?ref=commonmain.dev)  
Pick and save Files, Medias and Folder for Kotlin Multiplatform and Compose Multiplatform - a powerful cross-platform file operations library for Kotlin Multiplatform.
- [**SafeGradle**](https://github.com/MohammedAlaaMorsi/SafeGradle?ref=commonmain.dev)  
SafeGradle is a professional-grade security scanner for IntelliJ IDEA that protects your development environment from malicious Gradle build scripts. It identifies security risks like hidden network calls, shell execution, and credential leaks *before* they can compromise your system.
- [**protovalidate-kt**](https://github.com/bmcreations/protovalidate-kt?ref=commonmain.dev)  
Kotlin code generation for [protovalidate](https://github.com/bufbuild/protovalidate?ref=commonmain.dev) (buf.validate) and [protoc-gen-validate](https://github.com/bufbuild/protoc-gen-validate?ref=commonmain.dev) (PGV) constraints. Generates Kotlin validation functions from protobuf constraint annotations at compile time via a `protoc` plugin. Includes a lightweight runtime library for common validation logic.

### Target: Production

Showcase of real-world apps proving KMP is ready for prime time.

SPONSORED 

****Carrd** \- Simple, free, fully responsive one-page sites for pretty much anything.  
  
Whether it's a personal profile, a landing page for your KMP project, or something a bit more elaborate, Carrd has you covered. Simple, responsive, and yup — totally free!

[Get Started ](https://try.carrd.co/commonmain?ref=commonmain.dev) 

[Heron for bluesky - Apps on Google PlayA tiny, graceful bluesky client![](https://static.ghost.org/v5.0.0/images/link-icon.svg)Apps on Google PlayAdetunji Dahunsi![](https://storage.ghost.io/c/57/59/57597180-415a-44ab-aa77-38b4467c31d5/content/images/thumbnail/hOlh1Qq5D4cJ8N4HNyiagKhWH66c1QyMz1WrPJ7IdP0dbH_S1RLmFDOvsjXHAWHDx_mpdlgZ1c5gqhFhSQxTDa8)](https://play.google.com/store/apps/details?id=com.tunjid.heron&referrer=utm%5Fcampaign%3Dandroid%5Fmetadata%26utm%5Fmedium%3Dweb%26utm%5Fsource%3Dgithub.com%26utm%5Fcontent%3Dbadge&ref=commonmain.dev)

→ Link to [Heron GitHub repository](https://github.com/tunjid/heron?ref=commonmain.dev)

[iShape: AI Macro Tracker App - App StoreDownload iShape: AI Macro Tracker by Ofek Teken on the App Store. See screenshots, ratings and reviews, user tips, and more apps like iShape: AI Macro Tracker.![](https://static.ghost.org/v5.0.0/images/link-icon.svg)App StoreOfek Teken![](https://is1-ssl.mzstatic.com/image/thumb/PurpleSource221/v4/ce/bf/d8/cebfd840-c68a-27c2-94ed-8e56b8b63bed/Placeholder.mill/1200x630wa.jpg)](https://apps.apple.com/us/app/ishape-macros-tracker/id6514314381?ref=commonmain.dev)

→ Link to [Play Store](https://play.google.com/store/apps/details?id=com.ofekTe.iShape&ref=commonmain.dev) version

[GitHub - reivaj-gg/Clarity: Clarity: A cognitive training and self-awareness laboratory built with Kotlin Multiplatform. Play science-backed games, track your daily context, and unlock AI-driven insights about your mindClarity: A cognitive training and self-awareness laboratory built with Kotlin Multiplatform. Play science-backed games, track your daily context, and unlock AI-driven insights about your mind - rei…![](https://static.ghost.org/v5.0.0/images/link-icon.svg)GitHubreivaj-gg![](https://storage.ghost.io/c/57/59/57597180-415a-44ab-aa77-38b4467c31d5/content/images/thumbnail/Clarity)](https://github.com/reivaj-gg/Clarity?ref=commonmain.dev)

[GitHub - snj07/req-lab: Open-Source Desktop API client built with Kotlin (KMP). HTTP requests, scripting, variables, collections, and Postman import — runs offline. Alternative to Postman/Insomnia.Open-Source Desktop API client built with Kotlin (KMP). HTTP requests, scripting, variables, collections, and Postman import — runs offline. Alternative to Postman/Insomnia. - snj07/req-lab![](https://static.ghost.org/v5.0.0/images/link-icon.svg)GitHubsnj07![](https://storage.ghost.io/c/57/59/57597180-415a-44ab-aa77-38b4467c31d5/content/images/thumbnail/req-lab)](https://github.com/snj07/req-lab?ref=commonmain.dev)

### Careers

Kotlin Multiplatform job postings and opportunities.

SPONSORED 

****wellfound** • Where startups and job seekers connect.  
  
🤝 Connect directly with founders at top startups - no third party recruiters allowed.  
💸 Everything you need to know, all upfront. View salary, stock options, and more before applying.  
✌️ Say goodbye to cover letters - your profile is all you need. One click to apply and you're done.  
✨ Unique jobs at startups and tech companies you can’t find anywhere else.

[Find Your Next Remote Job ](https://wellfound.com/l/2ABERG?ref=commonmain.dev) 

🏀

[Senior iOS/KMP Engineer](https://jobs.ashbyhq.com/jump/4f12f5ea-b995-4e16-8d9f-5d81c7fb4178?ref=commonmain.dev) at [Jump](https://www.jump.com/?ref=commonmain.dev)  
  
We’re looking for a Senior iOS Engineer to help build and evolve Jump’s mobile apps. You’ll be an early member of our mobile team, contributing hands-on to core features, architecture, and technical direction as our app and platform scale.  
  
Our mobile stack uses Kotlin Multiplatform (KMP) for shared data and domain layers, with a native SwiftUI layer on iOS. In this role, you’ll write production Kotlin Multiplatform code and own the iOS user experience working across the full mobile stack to deliver high-quality, fan-facing features. You’ll collaborate closely with other mobile engineers, product managers, and designers to ship thoughtful experiences to a passionate and growing sports audience.

---

#### 🚀 Get Featured!

Got something interesting to share with the Kotlin Multiplatform community? [Submit your link](https://commonmain.dev/submit-your-link/) for a chance to get featured in the next issue of **commonMain.dev**.

#### 🤝 Support the Build

**commonMain.dev** is made possible by our partners. If you have a tool or service that helps KMP developers ship to production faster, we’d love to help you reach our community. [Collaborate with us](https://commonmain.dev/sponsor/).

#### ✍ Code Review

This newsletter is curated and written by a real human being. I’m always looking for ways to optimize the build. Was there something you liked or disliked in particular? Or did you find a bug in this issue? Simply **reply to this email** \- I read every comment from the community and take your feedback into account for the next release.

Until next time,   
**Stay platform-independent!**  
Bogdan • Founder of commonMain.dev

## Sign up for commonMain.dev

The weekly newsletter for Kotlin Multiplatform (KMP). News, jobs, technical deep-dives, and more. Delivered every Tuesday.

Subscribe 

Email sent! Check your inbox to complete your signup. 

No spam. Unsubscribe anytime.