<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Olwethu Pissot</title>
    <description>The latest articles on DEV Community by Olwethu Pissot (@olwethu_pissot_1ecfda93ab).</description>
    <link>https://dev.to/olwethu_pissot_1ecfda93ab</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2251336%2Fde45180b-c48d-4988-9d91-90a2a08801d9.png</url>
      <title>DEV Community: Olwethu Pissot</title>
      <link>https://dev.to/olwethu_pissot_1ecfda93ab</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/olwethu_pissot_1ecfda93ab"/>
    <language>en</language>
    <item>
      <title>We're Kotzilla — and We're Done Watching Android Devs Navigate Blind</title>
      <dc:creator>Olwethu Pissot</dc:creator>
      <pubDate>Thu, 09 Apr 2026 14:48:12 +0000</pubDate>
      <link>https://dev.to/kotzilla/were-kotzilla-and-were-done-watching-android-devs-navigate-blind-19d1</link>
      <guid>https://dev.to/kotzilla/were-kotzilla-and-were-done-watching-android-devs-navigate-blind-19d1</guid>
      <description>&lt;p&gt;Hey dev.to 👋&lt;br&gt;
We're the team behind &lt;a href="https://insert-koin.io/" rel="noopener noreferrer"&gt;Koin&lt;/a&gt; — the dependency injection framework used by 25% of native Android applications. If you've built an Android or Kotlin Multiplatform app in the last few years, there's a good chance Koin is already in your stack.&lt;br&gt;
We've spent years in the Android ecosystem. We know the codebase, the tooling, the pain points. And one pain point kept coming up, over and over again:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Production issues you can't explain.&lt;/strong&gt;&lt;br&gt;
A crash you can't reproduce. A frozen screen that only happens at scale. A startup time that degrades release after release, with no clear culprit. Most monitoring tools give you flat signals, logs, and stack traces and leave you to do the correlation manually.&lt;br&gt;
We got tired of watching great developers navigate blind.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;So we built Kotzilla&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://kotzilla.io/" rel="noopener noreferrer"&gt;Kotzilla&lt;/a&gt; is a runtime observability platform built specifically for Android and Kotlin Multiplatform apps. Not a generic APM with a mobile SDK bolted on. Built from the ground up for the Kotlin ecosystem, with deep integration into the dependency injection layer where most performance issues actually originate.&lt;br&gt;
The platform captures every event with full structural context: which component, which thread, which scope, which screen. It doesn't just tell you something is slow. It tells you why — and points to the exact component responsible.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What we just shipped: Console 4.0&lt;/strong&gt;&lt;br&gt;
Today we're sharing a walkthrough of our new Dashboard,the centrepiece of Console 4.0.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7dw6sbsqi3i8tzducmjy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7dw6sbsqi3i8tzducmjy.png" alt=" " width="800" height="388"&gt;&lt;/a&gt;&lt;br&gt;
It connects business-level health KPIs (Crash Free Rate, ANR Free Rate, Slow Component Free Rate) to the root cause detection Kotzilla is known for. You start from user impact, drill down to the blocking component, and land on the exact dependency resolution causing the problem,&lt;strong&gt;in three clicks, with no custom instrumentation.&lt;/strong&gt;&lt;br&gt;
We walk through a real example in the full article, from a slow MainActivity all the way to MainViewModel, blocking the main thread and the full dependency graph explaining why.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What's next&lt;/strong&gt;&lt;br&gt;
We'll be posting here regularly — deep dives on Android performance, Kotlin Multiplatform observability, Koin internals, and everything we're learning building dev tools in the open.&lt;br&gt;
If that sounds useful, follow us. And if you have questions, war stories about production issues, or things you wish your observability tooling could do — drop them in the comments. We're genuinely listening.&lt;/p&gt;

&lt;p&gt;— The Kotzilla Team&lt;/p&gt;

</description>
      <category>androiddev</category>
      <category>kotlin</category>
      <category>devtool</category>
      <category>observability</category>
    </item>
    <item>
      <title>When developing a Compose application......</title>
      <dc:creator>Olwethu Pissot</dc:creator>
      <pubDate>Tue, 29 Oct 2024 14:25:15 +0000</pubDate>
      <link>https://dev.to/olwethu_pissot_1ecfda93ab/when-developing-a-compose-application-52d6</link>
      <guid>https://dev.to/olwethu_pissot_1ecfda93ab/when-developing-a-compose-application-52d6</guid>
      <description>&lt;p&gt;👋🏾 you can use the &lt;code&gt;koinInject&lt;/code&gt; function to inject any instance or &lt;code&gt;koinViewModel&lt;/code&gt; to inject a &lt;code&gt;ViewModel&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Instances injected via &lt;code&gt;koinInject&lt;/code&gt; will follow the lifecycle of the Composable they are used in, releasing the instance when the Composable is disposed. &lt;code&gt;ViewModel&lt;/code&gt; instances will adhere to the standard &lt;code&gt;ViewModel&lt;/code&gt; lifecycle.&lt;/p&gt;

&lt;p&gt;To Get Started With Koin 👉🏾 &lt;a href="https://insert-koin.io/" rel="noopener noreferrer"&gt;https://insert-koin.io/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9sc9kcnl1n6w242czu92.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9sc9kcnl1n6w242czu92.png" alt="Image description" width="544" height="361"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Smooth Migration from Dagger to Koin</title>
      <dc:creator>Olwethu Pissot</dc:creator>
      <pubDate>Fri, 25 Oct 2024 14:11:09 +0000</pubDate>
      <link>https://dev.to/olwethu_pissot_1ecfda93ab/smooth-migration-from-dagger-to-koin-4d32</link>
      <guid>https://dev.to/olwethu_pissot_1ecfda93ab/smooth-migration-from-dagger-to-koin-4d32</guid>
      <description>&lt;p&gt;For a smooth migration from Dagger to Koin, consume Dagger components from your Koin configuration using Dagger's EntryPoint to access dependencies. You can declare this dependency in Koin thanks to the daggerBridge. #AndroidDev&lt;/p&gt;

&lt;p&gt;&lt;a href="https://blog.kotzilla.io/why-migrate-from-dagger2/hilt-to-koin" rel="noopener noreferrer"&gt;https://blog.kotzilla.io/why-migrate-from-dagger2/hilt-to-koin&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Koin is now updated to support the latest Kotlin version</title>
      <dc:creator>Olwethu Pissot</dc:creator>
      <pubDate>Thu, 24 Oct 2024 12:15:18 +0000</pubDate>
      <link>https://dev.to/olwethu_pissot_1ecfda93ab/koin-is-now-updated-to-support-the-latest-kotlin-version-1oc6</link>
      <guid>https://dev.to/olwethu_pissot_1ecfda93ab/koin-is-now-updated-to-support-the-latest-kotlin-version-1oc6</guid>
      <description>&lt;p&gt;The &lt;a href="https://insert-koin.io/" rel="noopener noreferrer"&gt;Koin framework&lt;/a&gt; is now updated to support the latest Kotlin version, now integrating with Google KSP. Koin Annotations 2.0.0-Beta1 to take advantage of Kotlin 2.0.20 and KSP 2.0.20-1.0.25, and target Koin 4.0. This release is based on the stable 1.4.0 version.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Koin has just refreshed all Koin and Kotlin getting-started projects.</title>
      <dc:creator>Olwethu Pissot</dc:creator>
      <pubDate>Tue, 22 Oct 2024 12:25:05 +0000</pubDate>
      <link>https://dev.to/olwethu_pissot_1ecfda93ab/koin-has-just-refreshed-all-koin-and-kotlin-getting-started-projects-2jfd</link>
      <guid>https://dev.to/olwethu_pissot_1ecfda93ab/koin-has-just-refreshed-all-koin-and-kotlin-getting-started-projects-2jfd</guid>
      <description>&lt;p&gt;Hey everyone&lt;/p&gt;

&lt;p&gt;You can now play with Kotlin Multiplatform Swift UI projects or Compose Multiplatform projects. Also added Ktor &amp;amp; Annotations projects.&lt;/p&gt;

&lt;p&gt;You can check them all:&lt;/p&gt;

&lt;p&gt;KMP (no shared UI) - &lt;a href="https://insert-koin.io/docs/quickstart/kmp/" rel="noopener noreferrer"&gt;https://insert-koin.io/docs/quickstart/kmp/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;CMP (Compse UI &amp;amp; ViewModel) - &lt;a href="https://insert-koin.io/docs/quickstart/cmp/" rel="noopener noreferrer"&gt;https://insert-koin.io/docs/quickstart/cmp/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Ktor &amp;amp; Annotations - &lt;a href="https://insert-koin.io/docs/quickstart/ktor-annotations/" rel="noopener noreferrer"&gt;https://insert-koin.io/docs/quickstart/ktor-annotations/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Have a lovey day&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
