<?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: Mihaela Vasile-Pătrașcu</title>
    <description>The latest articles on DEV Community by Mihaela Vasile-Pătrașcu (@mihaelapatrascu).</description>
    <link>https://dev.to/mihaelapatrascu</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%2F802384%2F864ba8fc-3bd5-4adf-ba85-d524d748fc3d.jpeg</url>
      <title>DEV Community: Mihaela Vasile-Pătrașcu</title>
      <link>https://dev.to/mihaelapatrascu</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mihaelapatrascu"/>
    <language>en</language>
    <item>
      <title>Playing around with Feature Flags in Android (Kotlin)</title>
      <dc:creator>Mihaela Vasile-Pătrașcu</dc:creator>
      <pubDate>Tue, 25 Jan 2022 09:47:54 +0000</pubDate>
      <link>https://dev.to/mihaelapatrascu/playing-around-with-feature-flags-in-android-kotlin-25if</link>
      <guid>https://dev.to/mihaelapatrascu/playing-around-with-feature-flags-in-android-kotlin-25if</guid>
      <description>&lt;p&gt;Let's play with a hypothetical scenario where you've built a Kotlin-based mobile application, and you'd like to customize the overall user experience based on specified criteria. You've got a perfect idea, but then this question pops up everywhere: Now what? Folks, allow me to introduce you to the concept of feature flags in Kotlin.&lt;/p&gt;

&lt;h2&gt;
  
  
  Few words about feature flags
&lt;/h2&gt;

&lt;p&gt;A &lt;code&gt;feature flag&lt;/code&gt;, also known as a feature toggle, is a technique that allows you to enable or disable different functionalities. As a product owner, you can toggle certain features on and off during the application's runtime. And because deploying mobile apps is not as straightforward as deploying web apps, when issues emerge in a mobile application, feature flags are a solution to avoid long app approval processes. &lt;/p&gt;

&lt;p&gt;My focus today will be on implementing ConfigCat's feature flags system in Android (Kotlin) using a sample mobile application. &lt;a href="https://configcat.com/"&gt;ConfigCat&lt;/a&gt; provides &lt;a href="https://configcat.com/docs/"&gt;detailed documentation&lt;/a&gt; on implementing feature flags in various technologies, including Java, Python, .NET and many others. Feel free to check the complete list &lt;a href="https://configcat.com/docs/sdk-reference/overview"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Few words about the Android sample application
&lt;/h2&gt;

&lt;p&gt;For ease of reference, we'll be playing with a little &lt;a href="https://github.com/mihaelapatrascu/DummyCoffeeShopApp"&gt;coffee shop app&lt;/a&gt; in this tutorial. Before you scare out, let me tell you it consists of just a few pages and a main menu screen. Put in other words, it's a simple mobile application that allows people to order beverages from a coffee shop. Easy-peasy, because I'm here to help.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why is it a good idea to use feature flags in an Android app?
&lt;/h3&gt;

&lt;p&gt;I'm a big fan of simplicity, so here's the rub. I plan to use a different version of the app's menu during the holiday season. Maybe change the theme, why not? Could be both, but either way, ConfigCat's feature management mechanism is here to help.&lt;/p&gt;

&lt;p&gt;Let's stick to the special menu for now. I'll create and enable an oh-so-aptly called &lt;code&gt;Holiday&lt;/code&gt; flag, which will:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;adapt the menu with new, specific-to-the-special-season listings when the flag's value is 'true';
&lt;/li&gt;
&lt;li&gt;make the app utilize its regular menu when the flag's value is 'false'. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Note: To speed things along, I'll also occasionally peek at the &lt;a href="https://configcat.com/docs/sdk-reference/android/"&gt;ConfigCat Android (Kotlin) SDK docs&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Prerequisites
&lt;/h2&gt;

&lt;p&gt;Prior to coding, I ought to ensure that my app uses a &lt;a href="https://configcat.com/docs/sdk-reference/android"&gt;supported Android SDK version&lt;/a&gt; (at least 18 in this case). Java 1.8 or above is likewise mandatory. The &lt;a href="https://github.com/mihaelapatrascu/DummyCoffeeShopApp/blob/master/app/build.gradle"&gt;&lt;code&gt;build.gradle&lt;/code&gt;&lt;/a&gt; file will advise me throughout the task.&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="nf"&gt;compileOptions&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="n"&gt;sourceCompatibility&lt;/span&gt; &lt;span class="nc"&gt;JavaVersion&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;VERSION_1_8&lt;/span&gt;
        &lt;span class="n"&gt;targetCompatibility&lt;/span&gt; &lt;span class="nc"&gt;JavaVersion&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;VERSION_1_8&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Furthermore, in terms of generating feature flags and deploying them in any application, you must have a ConfigCat account. So check out the &lt;a href="https://configcat.com/"&gt;homepage&lt;/a&gt; and enroll. There is nothing to worry over, but if you get stuck, you can talk with the actual ConfigCat developers and acquire additional instructions &lt;a href="https://configcat.com/slack/"&gt;by heading over to Slack&lt;/a&gt;. I already have an account, therefore I'll skip this part. &lt;/p&gt;

&lt;h2&gt;
  
  
  How to connect an Android mobile app to ConfigCat?
&lt;/h2&gt;

&lt;p&gt;The first step is to add the &lt;a href="https://configcat.com/docs/sdk-reference/android/"&gt;ConfigCat Android (Kotlin) SDK&lt;/a&gt; into the project:&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="n"&gt;implementation&lt;/span&gt; &lt;span class="err"&gt;'&lt;/span&gt;&lt;span class="n"&gt;com&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;configcat&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="n"&gt;configcat-android-client&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="mi"&gt;6&lt;/span&gt;&lt;span class="p"&gt;.+&lt;/span&gt;&lt;span class="err"&gt;'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And import it wherever is needed:&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.configcat.*&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The ConfigCat SDK serves as the backbone of the overall feature flag system. You have to create your feature flags on the &lt;a href="https://app.configcat.com/"&gt;ConfigCat Dashboard&lt;/a&gt; then the feature flag evaluation is done locally on the client-side in the SDK, therefore you don't have to wait for a request made to ConfigCat every time a feature flag &lt;code&gt;getValue()&lt;/code&gt; is called, as the values are served from local cache. You can read about &lt;a href="https://configcat.com/docs/sdk-reference/android/#polling-modes"&gt;polling modes and caching here&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  The client and a special value
&lt;/h3&gt;

&lt;p&gt;In this example, a single component will be implementing the feature flagging mechanism, but feel free to scale it and use it for your entire application. As I want to keep things straightforward for now, all I need is the &lt;code&gt;RecyclerView&lt;/code&gt; located by the &lt;code&gt;home_fragment.xml&lt;/code&gt; and its adaptor, the &lt;code&gt;RecyclerAdapter.kt&lt;/code&gt; class. &lt;/p&gt;

&lt;p&gt;First, I ought to create a ConfigCat client:&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;client&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;ConfigCatClient&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"#YOUR-SDK-KEY#"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Note: the placeholder &lt;code&gt;YOUR-SDK-KEY&lt;/code&gt; ties the application with ConfigCat's service, so make sure you replace it with the uniquely-generated SDK key from your dashboard.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--7Zoq2U7W--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/gnjhiaea4w484qmnhzfh.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7Zoq2U7W--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/gnjhiaea4w484qmnhzfh.jpg" alt="dashboard-sdk" width="780" height="179"&gt;&lt;/a&gt;&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;sdk&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;holder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;itemTitle&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;getString&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nc"&gt;R&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;string&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;sdk&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="kd"&gt;val&lt;/span&gt; &lt;span class="py"&gt;client&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;ConfigCatClient&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;sdk&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now that I've established my client, I need the &lt;code&gt;holiday&lt;/code&gt; feature flag's value to assess the application's state: when the flag is &lt;code&gt;off&lt;/code&gt;, the holiday season is over, and consumers may purchase usual specialties. I activate the festive menu otherwise.&lt;/p&gt;

&lt;p&gt;There are several methods to get the flag's value, but for the sake of simplicity, I'll use the default mode with no user targeting. However, you can &lt;a href="https://configcat.com/docs/sdk-reference/android/#anatomy-of-getvalue"&gt;read more about user targeting&lt;/a&gt; if you want to get different feature flag values for different users.&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;var&lt;/span&gt; &lt;span class="py"&gt;holiday&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;client&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getValue&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nc"&gt;Boolean&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="k"&gt;class&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;java&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s"&gt;"holiday"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;false&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The &lt;code&gt;getValue&lt;/code&gt; function will return the actual feature flag value, so it is called along with the feature flag's name and the default value. In the example above, the &lt;code&gt;holiday&lt;/code&gt; variable holds the current flag’s value. The default value will be returned if the flag is not found or the local cache is empty.&lt;/p&gt;

&lt;h3&gt;
  
  
  Last but not least
&lt;/h3&gt;

&lt;p&gt;All that's left is to override the &lt;code&gt;onBindViewHolder&lt;/code&gt; function (which is located in the &lt;code&gt;RecyclerAdapter.kt&lt;/code&gt; class) depending on the feature flag value. If the value is true then the holiday menu is used, otherwise the standard menu is displayed. To achieve this, I use the lists below to change the menu’s regular layout.&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;if&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;holiday&lt;/span&gt; &lt;span class="p"&gt;==&lt;/span&gt; &lt;span class="k"&gt;true&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="n"&gt;holder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;itemTitle&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;titlesH&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="n"&gt;position&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
    &lt;span class="n"&gt;holder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;itemIngredients&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;ingredientsH&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="n"&gt;position&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
    &lt;span class="n"&gt;holder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;itemPrice&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;pricesH&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="n"&gt;position&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
    &lt;span class="nc"&gt;Glide&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;with&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;holder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;itemView&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
        &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;load&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;imagesH&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="n"&gt;position&lt;/span&gt;&lt;span class="p"&gt;])&lt;/span&gt;
        &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;into&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;holder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;itemImage&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;else&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="n"&gt;holder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;itemTitle&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;titles&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="n"&gt;position&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
    &lt;span class="n"&gt;holder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;itemIngredients&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;ingredients&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="n"&gt;position&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
    &lt;span class="n"&gt;holder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;itemPrice&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;prices&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="n"&gt;position&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
    &lt;span class="nc"&gt;Glide&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;with&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;holder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;itemView&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
        &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;load&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;images&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="n"&gt;position&lt;/span&gt;&lt;span class="p"&gt;])&lt;/span&gt;
        &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;into&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;holder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;itemImage&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;Whenever I toggle the holiday feature flag in my dashboard the menu items change accordingly. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--EtCvGbzB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6ta40kxatqkmx3e5h6hc.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--EtCvGbzB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6ta40kxatqkmx3e5h6hc.gif" alt="toggle-menu" width="586" height="271"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;Folks, let's recap the key steps in this tutorial:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create &lt;a href="https://app.configcat.com/"&gt;a ConfigCat account&lt;/a&gt; if you don't have one yet.&lt;/li&gt;
&lt;li&gt;Install the &lt;a href="https://configcat.com/docs/sdk-reference/android/"&gt;ConfigCat Android (Kotlin) SDK&lt;/a&gt; and create a client to link the app to the feature flags service.&lt;/li&gt;
&lt;li&gt;Implement your desired feature behind a feature flag.&lt;/li&gt;
&lt;li&gt;Toggle your feature on the ConfigCat Dashboard [&lt;a href="https://app.configcat.com"&gt;https://app.configcat.com&lt;/a&gt;] anytime, even after publishing to the play store.&lt;/li&gt;
&lt;li&gt;Last but not least, make sure to follow &lt;a href="https://configcat.com/docs/sdk-reference/android/"&gt;ConfigCat's guidelines&lt;/a&gt; for additional help.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Learn more
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;For more awesome articles on the feature flags topic, check out &lt;a href="https://configcat.com/blog/"&gt;ConfigCat's blog&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Join ConfigCat on social media to keep in touch with the latest tech trends. Find ConfigCat on &lt;a href="https://twitter.com/configcat"&gt;Twitter&lt;/a&gt;, &lt;a href="https://www.facebook.com/configcat"&gt;Facebook&lt;/a&gt;, &lt;a href="https://www.linkedin.com/company/configcat/"&gt;LinkedIn&lt;/a&gt; and &lt;a href="https://github.com/configcat"&gt;GitHub&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Get &lt;a href="https://github.com/mihaelapatrascu/DummyCoffeeShopApp"&gt;the sample app&lt;/a&gt; on GitHub.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>android</category>
      <category>kotlin</category>
      <category>configcat</category>
      <category>sdk</category>
    </item>
  </channel>
</rss>
