<?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: The AX code</title>
    <description>The latest articles on DEV Community by The AX code (@theaxcode).</description>
    <link>https://dev.to/theaxcode</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%2F3880002%2Ff2a12e94-10f0-4f59-94f8-c388dffd9c1c.png</url>
      <title>DEV Community: The AX code</title>
      <link>https://dev.to/theaxcode</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/theaxcode"/>
    <language>en</language>
    <item>
      <title>Building Beautiful Forms with Kotlin Multiplatform: Introducing Multiplat</title>
      <dc:creator>The AX code</dc:creator>
      <pubDate>Wed, 22 Apr 2026 16:41:41 +0000</pubDate>
      <link>https://dev.to/theaxcode/building-beautiful-forms-with-kotlin-multiplatform-introducing-multiplat-4o4j</link>
      <guid>https://dev.to/theaxcode/building-beautiful-forms-with-kotlin-multiplatform-introducing-multiplat-4o4j</guid>
      <description>&lt;h2&gt;
  
  
  Building Beautiful Forms with Kotlin Multiplatform: Introducing Multiplat
&lt;/h2&gt;

&lt;p&gt;In the fast-paced world of mobile development, the ability to share code between Android and iOS is no longer just a "nice-to-have"—it's a competitive necessity. Kotlin Multiplatform (KMP) has revolutionized how we share business logic, but sharing UI and complex interaction patterns like &lt;strong&gt;forms&lt;/strong&gt; has often remained a fragmented challenge.&lt;/p&gt;

&lt;p&gt;Enter &lt;strong&gt;Multiplat&lt;/strong&gt;, the successor to the &lt;code&gt;ComposeForms&lt;/code&gt; library. It’s designed to make building forms across platforms not just efficient, but enjoyable.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem: The Fragmented Form Fatigue
&lt;/h2&gt;

&lt;p&gt;Every developer knows the pain of building forms. You have to handle:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;State Management&lt;/strong&gt;: Keeping track of input values across orientation changes and platform cycles.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Validation Logic&lt;/strong&gt;: Validating email formats, required fields, and custom rules—often writing the same logic twice for Android and iOS.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;UI Consistency&lt;/strong&gt;: Ensuring a "Password" field looks and behaves similarly on both platforms while respecting native design cues.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Boilerplate&lt;/strong&gt;: Managing focuses, keyboard actions, and error states manually.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When you multiply this by two platforms, you get "Fragmented Form Fatigue."&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: Write Once, Render Everywhere
&lt;/h2&gt;

&lt;p&gt;Multiplat leverages &lt;strong&gt;Compose Multiplatform&lt;/strong&gt; to provide a unified, type-safe DSL for form construction. With Multiplat, you define your form structure, validation rules, and styling in a single &lt;code&gt;commonMain&lt;/code&gt; codebase.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why Multiplat?
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt; 🚀 &lt;strong&gt;100% Shared Logic &amp;amp; UI&lt;/strong&gt;: No more platform-specific UI code for forms. One source of truth for everything.&lt;/li&gt;
&lt;li&gt; 📝 &lt;strong&gt;Type-Safe DSL&lt;/strong&gt;: A readable, Kotlin-first way to declare forms. It feels like writing a config file, but with the power of full-blown Kotlin.&lt;/li&gt;
&lt;li&gt; ✅ &lt;strong&gt;Built-in Validation&lt;/strong&gt;: A powerful, extensible validation engine that catches errors as they happen.&lt;/li&gt;
&lt;li&gt; 🎨 &lt;strong&gt;Material 3 Driven&lt;/strong&gt;: Built on modern design standards, ensuring your forms look premium out of the box.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  See it in Action
&lt;/h2&gt;

&lt;p&gt;Defining a form with Multiplat is remarkably simple:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight kotlin"&gt;&lt;code&gt;&lt;span class="kd"&gt;val&lt;/span&gt; &lt;span class="py"&gt;contactForm&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;remember&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nf"&gt;form&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="nf"&gt;section&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Contact Information"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="nf"&gt;text&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"full_name"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                &lt;span class="n"&gt;label&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"Full Name"&lt;/span&gt;
                &lt;span class="n"&gt;placeholder&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"John Doe"&lt;/span&gt;
                &lt;span class="nf"&gt;required&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Name is essential"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
            &lt;span class="p"&gt;}&lt;/span&gt;
            &lt;span class="nf"&gt;email&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"email_address"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                &lt;span class="n"&gt;label&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"Email"&lt;/span&gt;
                &lt;span class="nf"&gt;required&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Email is required"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
                &lt;span class="nf"&gt;regex&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"^(.+)@(.+)$"&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;toRegex&lt;/span&gt;&lt;span class="p"&gt;(),&lt;/span&gt; &lt;span class="s"&gt;"Invalid email format"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
            &lt;span class="p"&gt;}&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;

        &lt;span class="nf"&gt;section&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Message"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="nf"&gt;longText&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"message"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                &lt;span class="n"&gt;label&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"Your Message"&lt;/span&gt;
                &lt;span class="n"&gt;maxLines&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;5&lt;/span&gt;
            &lt;span class="p"&gt;}&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;

        &lt;span class="nf"&gt;submitButton&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Send Message"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Rendering is even easier:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight kotlin"&gt;&lt;code&gt;&lt;span class="nc"&gt;RenderForm&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="n"&gt;form&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;contactForm&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="n"&gt;context&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;rememberFormContext&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;contactForm&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Use Cases: From Simple to Sophisticated
&lt;/h2&gt;

&lt;p&gt;Multiplat isn't just for login screens. Its modular architecture supports a wide range of scenarios:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;User Onboarding&lt;/strong&gt;: Multi-step registration flows with complex validation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;E-commerce&lt;/strong&gt;: Checkout forms with dynamic address validation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Professional Tools&lt;/strong&gt;: Data entry forms for inventory management or field research.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Surveys&lt;/strong&gt;: Quickly iterate on feedback forms without touching platform-specific code.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Future of Multiplat
&lt;/h2&gt;

&lt;p&gt;As the successor to &lt;code&gt;ComposeForms&lt;/code&gt;, Multiplat is built for the modern KMP ecosystem. We are committed to expanding the library with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;More Field Types&lt;/strong&gt;: Date pickers, file uploaders, and more.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Advanced Layouts&lt;/strong&gt;: Grid-based forms and adaptive layouts for tablets.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deeper Platform Integration&lt;/strong&gt;: Leveraging native auto-fill and keyboard features seamlessly.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Join the Journey
&lt;/h2&gt;

&lt;p&gt;Building cross-platform apps shouldn't mean compromising on the developer experience or user interface. Multiplat is here to bridge that gap.&lt;/p&gt;

&lt;p&gt;Check out the &lt;a href="https://github.com/tjmtic/Multiplat" rel="noopener noreferrer"&gt;Multiplat GitHub Repository&lt;/a&gt; to get started, contribute, or provide feedback. Let's make form development beautiful.&lt;/p&gt;

</description>
      <category>kotlin</category>
      <category>productivity</category>
      <category>opensource</category>
      <category>architecture</category>
    </item>
    <item>
      <title>Automating C Bindings in Kotlin Multiplatform</title>
      <dc:creator>The AX code</dc:creator>
      <pubDate>Wed, 22 Apr 2026 00:28:37 +0000</pubDate>
      <link>https://dev.to/theaxcode/automating-c-bindings-in-kotlin-multiplatform-2e2p</link>
      <guid>https://dev.to/theaxcode/automating-c-bindings-in-kotlin-multiplatform-2e2p</guid>
      <description>&lt;h2&gt;
  
  
  Bridging the Gap: Automating C Bindings in Kotlin Multiplatform
&lt;/h2&gt;

&lt;p&gt;Integrating native C/C++ code into a Kotlin Multiplatform (KMP) project often feels like paying a "native tax." You have to maintain multiple glue layers: JNI for Android and JVM, CInterop for iOS and Native, and often redundant build logic in CMake and Gradle.&lt;/p&gt;

&lt;p&gt;What if you could maintain a single C source directory and have the bindings generated for you automatically?&lt;/p&gt;

&lt;p&gt;Introducing &lt;strong&gt;CBindingKMP&lt;/strong&gt; — a library designed to automate the bridge between your performance-critical C code and your KMP applications.&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%2F40n5pybabtuqw18e4r63.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%2F40n5pybabtuqw18e4r63.png" alt="Hero" width="640" height="640"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem: The "Native Tax"
&lt;/h2&gt;

&lt;p&gt;When you decide to use C in a KMP project, you typically face three distinct challenges:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;Android &amp;amp; JVM&lt;/strong&gt;: You must write manual JNI wrappers (C functions with long, brittle names like &lt;code&gt;Java_com_example_GeneratedNativeKt_add_1numbersJNI&lt;/code&gt;) and use CMake to build shared libraries.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;iOS &amp;amp; Native&lt;/strong&gt;: You need to configure &lt;code&gt;.def&lt;/code&gt; files and use Kotlin/Native's CInterop tool.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Synchronization&lt;/strong&gt;: Every time you change a C function signature, you have to manually update the JNI wrapper, the Kotlin &lt;code&gt;external fun&lt;/code&gt; declaration, and the CInterop headers.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This redundancy is a breeding ground for bugs and maintenance headaches.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Solution: CBindingKMP
&lt;/h2&gt;

&lt;p&gt;CBindingKMP turns your C headers into a &lt;strong&gt;Single Source of Truth&lt;/strong&gt;. By pointing our Gradle plugin to your headers, it automatically:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Parses&lt;/strong&gt; your C function declarations.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Generates&lt;/strong&gt; JNI-compliant C wrappers for Android and JVM.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Generates&lt;/strong&gt; Kotlin &lt;code&gt;external fun&lt;/code&gt; declarations that map directly to the JNI wrappers.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Wires&lt;/strong&gt; everything into the Gradle build cycle.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  How It Works: Under the Hood
&lt;/h2&gt;

&lt;p&gt;The architecture is designed to be seamless. Here's how the automation flow looks:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;graph TD
    subgraph "Source"
        C["C Headers (.h)"]
        Impl["C Implementation (.c)"]
    end

    subgraph "JNI Generator Plugin"
        Task["generateJni Task"]
        Parser["Regex Parser"]
        GenC["jni_gen_bridge.c"]
        GenK["GeneratedNative.kt"]
    end

    subgraph "Compilation"
        CMake["CMake (Android/JVM)"]
        CInterop["cinterop (iOS/Native)"]
    end

    subgraph "Final Artifacts"
        Lib["Shared Library (.so / .dylib)"]
        Klib["Kotlin Library (.klib)"]
    end

    C --&amp;gt; Task
    Task --&amp;gt; Parser
    Parser --&amp;gt; GenC
    Parser --&amp;gt; GenK
    Impl --&amp;gt; CMake
    GenC --&amp;gt; CMake
    C --&amp;gt; CInterop
    CMake --&amp;gt; Lib
    CInterop --&amp;gt; Klib
    GenK --&amp;gt; Klib
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Type Mapping
&lt;/h3&gt;

&lt;p&gt;We handle the heavy lifting of type conversion between C, JNI, and Kotlin types:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;C Type&lt;/th&gt;
&lt;th&gt;JNI Type&lt;/th&gt;
&lt;th&gt;Kotlin Type&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;int&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;jint&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;Int&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;float&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;jfloat&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;Float&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;double&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;jdouble&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;Double&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;void&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;void&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;Unit&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Quick Start: From C to Kotlin in 3 Steps
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Define your C function
&lt;/h3&gt;

&lt;p&gt;Create a simple header in &lt;code&gt;native/c/mylib.h&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight c"&gt;&lt;code&gt;&lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="nf"&gt;add_numbers&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="n"&gt;a&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="n"&gt;b&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. Build the project
&lt;/h3&gt;

&lt;p&gt;Run the Gradle assemble task. The plugin will automatically parse the header and generate the bridge.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;./gradlew :shared:assemble
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Call from Kotlin
&lt;/h3&gt;

&lt;p&gt;The generated bindings are ready to use immediately:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight kotlin"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;com.abyxcz.cbindingkmp.shared.generated.add_numbersJNI&lt;/span&gt;

&lt;span class="kd"&gt;val&lt;/span&gt; &lt;span class="py"&gt;result&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;add_numbersJNI&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;20&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;println&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Result from C: $result"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Why Use CBindingKMP?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;🚀 Zero Glue Code&lt;/strong&gt;: Stop writing JNI boilerplate.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;🛠 Unified Source&lt;/strong&gt;: One directory for all platforms.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;📱 Full Platform Support&lt;/strong&gt;: Android, iOS, JVM, and Native.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;⚙️ Gradle Integrated&lt;/strong&gt;: Fits right into your existing workflow.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're building performance-intensive apps—think image processing, cryptography, or edge AI—CBindingKMP lets you focus on the logic, not the plumbing.&lt;/p&gt;

&lt;p&gt;Check out the project on &lt;a href="https://github.com/abyxcz/CBindingKMP" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; and let us know what you think!&lt;/p&gt;

</description>
      <category>kotlin</category>
      <category>kmp</category>
      <category>cpp</category>
      <category>gradle</category>
    </item>
  </channel>
</rss>
