<?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: Vijesh KR</title>
    <description>The latest articles on DEV Community by Vijesh KR (@vijeshkr).</description>
    <link>https://dev.to/vijeshkr</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4132922%2F8cd65d5d-c161-4213-820b-91a1a6ae3775.jpg</url>
      <title>DEV Community: Vijesh KR</title>
      <link>https://dev.to/vijeshkr</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vijeshkr"/>
    <language>en</language>
    <item>
      <title>Building a Lightweight Biometric Authentication Library for React Native with Kotlin</title>
      <dc:creator>Vijesh KR</dc:creator>
      <pubDate>Sat, 19 Sep 2026 14:30:22 +0000</pubDate>
      <link>https://dev.to/vijeshkr/building-a-lightweight-biometric-authentication-library-for-react-native-with-kotlin-5al4</link>
      <guid>https://dev.to/vijeshkr/building-a-lightweight-biometric-authentication-library-for-react-native-with-kotlin-5al4</guid>
      <description>&lt;p&gt;Hello developers!&lt;/p&gt;

&lt;p&gt;Today, I want to share a quick story about a common challenge I faced while working with React Native: securing app access with biometric authentication, and why I decided to build and open-source my own library:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;code&gt;@vijeshkr/react-native-biometric-auth&lt;/code&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Spark: Why Another Biometric Library?
&lt;/h2&gt;

&lt;p&gt;While working on a mobile application that required secure user authentication, such as unlocking the app when it launches, I came across a few challenges with existing solutions.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Clunky Fallback Support
&lt;/h3&gt;

&lt;p&gt;Handling fallback authentication can sometimes require additional configuration.&lt;/p&gt;

&lt;p&gt;I wanted a solution where users could authenticate using biometrics while also having the option to fall back to their device credentials, such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fingerprint&lt;/li&gt;
&lt;li&gt;Device PIN&lt;/li&gt;
&lt;li&gt;Pattern&lt;/li&gt;
&lt;li&gt;Password&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  2. Legacy Native Dependencies
&lt;/h3&gt;

&lt;p&gt;I also wanted to avoid relying on older Java-based implementations and instead use modern Android APIs with &lt;strong&gt;Kotlin&lt;/strong&gt; and &lt;strong&gt;AndroidX Biometric&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Keeping Things Lightweight
&lt;/h3&gt;

&lt;p&gt;For this particular use case, I wanted something simple:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A lightweight native module&lt;/li&gt;
&lt;li&gt;A clean JavaScript/TypeScript API&lt;/li&gt;
&lt;li&gt;Modern Android biometric APIs&lt;/li&gt;
&lt;li&gt;Promise-based authentication&lt;/li&gt;
&lt;li&gt;Minimal configuration&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So, instead of working around those limitations, I decided to build my own native module.&lt;/p&gt;

&lt;h2&gt;
  
  
  Introducing &lt;code&gt;@vijeshkr/react-native-biometric-auth&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;&lt;code&gt;@vijeshkr/react-native-biometric-auth&lt;/code&gt;&lt;/strong&gt; is an Android biometric authentication library for React Native, built with &lt;strong&gt;Kotlin&lt;/strong&gt; and &lt;strong&gt;AndroidX Biometric&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It provides biometric authentication with optional device credential fallback.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Kotlin Native Module&lt;/strong&gt; — Built entirely with Kotlin.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AndroidX Biometric&lt;/strong&gt; — Uses Android's modern &lt;code&gt;BiometricPrompt&lt;/code&gt; APIs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Device Credential Fallback&lt;/strong&gt; — Supports PIN, Pattern, or Password fallback.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Promise-Based API&lt;/strong&gt; — Works naturally with &lt;code&gt;async/await&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;TypeScript Support&lt;/strong&gt; — Includes TypeScript definitions for a better developer experience.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Simple React Native Integration&lt;/strong&gt; — Minimal setup and a straightforward API.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Installation
&lt;/h3&gt;

&lt;p&gt;Install the package using npm:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; @vijeshkr/react-native-biometric-auth
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or using Yarn:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;yarn add @vijeshkr/react-native-biometric-auth
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. Check Availability and Authenticate
&lt;/h3&gt;

&lt;p&gt;Once installed, you can check whether authentication is available and then trigger the native Android authentication prompt.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;React&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;react&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;Button&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;Alert&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;SafeAreaView&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;react-native&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;BiometricAuth&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;@vijeshkr/react-native-biometric-auth&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;App&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;handleAuthentication&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;async &lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;try&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="c1"&gt;// 1. Check if biometrics or device credentials are available&lt;/span&gt;
      &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;isAvailable&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;BiometricAuth&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;isBiometricAvailable&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

      &lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="nx"&gt;isAvailable&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="nx"&gt;Alert&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;alert&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
          &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Unavailable&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
          &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Biometrics or device credentials are not set up on this device.&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;
        &lt;span class="p"&gt;);&lt;/span&gt;
        &lt;span class="k"&gt;return&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
      &lt;span class="p"&gt;}&lt;/span&gt;

      &lt;span class="c1"&gt;// 2. Trigger native BiometricPrompt&lt;/span&gt;
      &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;success&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;BiometricAuth&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;authenticate&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;
        &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Unlock Application&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="na"&gt;subtitle&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Touch fingerprint sensor or enter device PIN&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="na"&gt;cancelText&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Cancel&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="na"&gt;allowDeviceCredential&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="p"&gt;});&lt;/span&gt;

      &lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;success&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="nx"&gt;Alert&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;alert&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Success&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Welcome back!&lt;/span&gt;&lt;span class="dl"&gt;'&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="k"&gt;catch &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;error&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;error&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Authentication Error:&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;error&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

      &lt;span class="nx"&gt;Alert&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;alert&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
        &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Error&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Authentication failed or was cancelled.&lt;/span&gt;&lt;span class="dl"&gt;'&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="k"&gt;return &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;SafeAreaView&lt;/span&gt;
      &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="na"&gt;flex&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="na"&gt;justifyContent&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;center&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="na"&gt;alignItems&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;center&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;
    &lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
      &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;Button&lt;/span&gt;
        &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"Unlock App with Biometrics"&lt;/span&gt;
        &lt;span class="na"&gt;onPress&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;handleAuthentication&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;
      &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nc"&gt;SafeAreaView&lt;/span&gt;&lt;span class="p"&gt;&amp;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;The API is intentionally simple: check availability, call &lt;code&gt;authenticate()&lt;/code&gt;, and handle the returned promise.&lt;/p&gt;

&lt;h2&gt;
  
  
  How Does It Work Under the Hood?
&lt;/h2&gt;

&lt;p&gt;The native Android implementation is written entirely in &lt;strong&gt;Kotlin&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The module uses Android's:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;BiometricPrompt&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;BiometricManager&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;androidx.biometric&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When &lt;code&gt;allowDeviceCredential: true&lt;/code&gt; is enabled, the authentication flow allows the device credential to be used as a fallback.&lt;/p&gt;

&lt;p&gt;Conceptually, the authentication configuration uses:&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;BIOMETRIC_STRONG&lt;/span&gt; &lt;span class="n"&gt;or&lt;/span&gt; &lt;span class="nc"&gt;DEVICE_CREDENTIAL&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This allows the user to authenticate using a supported strong biometric or their configured device credential, depending on the device and authentication setup.&lt;/p&gt;

&lt;p&gt;For example, if biometric authentication isn't available or the user chooses the available fallback, the device can use credentials such as a &lt;strong&gt;PIN, Pattern, or Password&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This is one of the main reasons I wanted to build the module around the modern Android biometric APIs rather than implementing the authentication flow manually.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Kotlin?
&lt;/h2&gt;

&lt;p&gt;One of my goals with this project was to get more comfortable with the native side of React Native.&lt;/p&gt;

&lt;p&gt;React Native doesn't mean you only work with JavaScript or TypeScript.&lt;/p&gt;

&lt;p&gt;Sometimes you need to go one layer deeper and interact directly with:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;React Native → Native Module → Android APIs&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For this project, Kotlin was a good fit because the Android side could remain small and focused while still taking advantage of modern Android APIs.&lt;/p&gt;

&lt;p&gt;Building this module also helped me better understand how React Native communicates with native Android code through a custom native module.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open Source
&lt;/h2&gt;

&lt;p&gt;The project is open source, and I'd love for other React Native developers to try it out and share their feedback.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;NPM Package:&lt;/strong&gt; &lt;a href="https://www.npmjs.com/package/@vijeshkr/react-native-biometric-auth" rel="noopener noreferrer"&gt;@vijeshkr/react-native-biometric-auth&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub Repository:&lt;/strong&gt; &lt;a href="https://github.com/vijeshkr/react-native-biometric-auth" rel="noopener noreferrer"&gt;vijeshkr/react-native-biometric-auth&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you find the project useful, consider giving it a star on GitHub.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next?
&lt;/h2&gt;

&lt;p&gt;This is currently focused on &lt;strong&gt;Android biometric authentication&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;There are several things I would like to explore as the project evolves, including improvements to the authentication flow, documentation, testing, and potentially broader platform support.&lt;/p&gt;

&lt;p&gt;I also want to continue improving my understanding of React Native's native module architecture through projects like this.&lt;/p&gt;

&lt;h2&gt;
  
  
  Let's Discuss
&lt;/h2&gt;

&lt;p&gt;I'd love to hear from other React Native developers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Have you faced any challenges while implementing biometric or native authentication in React Native?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Or:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What feature would you like to see added to this library next?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Feel free to share your experience or suggestions in the comments.&lt;/p&gt;

&lt;p&gt;Happy coding!&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>android</category>
      <category>kotlin</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
