News
Entertainment
Science & Technology
Life
Culture & Art
Hobbies
News
Entertainment
Science & Technology
Culture & Art
Hobbies
Many Android developers use Dagger or its “wrapper” Hilt for Dependency Injection. But not many of them use Dagger SPI. This mechanism gives us access to the dependency graph, allowing us to add our…
In traditional programming, execution flow is structured around a main routine (the entry point of the program) and subroutines (helper functions that perform specific tasks). In our previous example…
The ViewModel is a core component of Android Architecture Components, designed to store and manage UI-related data in a lifecycle-conscious way. One of its key features is the ability to retain data…
A dynamic, responsive UI with an animated gradient that changes as you scroll and smooth transitions between cards for both light and dark themes. In this article, you’ll learn how to create this…
At the heart of Android’s architecture lies a powerful abstraction that connects applications to the system: the Context. This article explores Android’s process model, component lifecycle, and…
In this article, I’ll share my experience and insights on migrating Android apps to Koltin Multiplatform (KMP). KMP is becoming popular among Android developers. This technology allows you to run…
In Compose Multiplatform, we typically develop our user interface with Jetpack Compose while placing the majority of our code in the commonMain module. Whenever we need platform-specific…
Have you ever struggled to find a specific item in a lengthy dropdown menu using Jetpack Compose? While Compose simplifies many aspects of UI development, handling extensive lists in dropdowns can…
To ensure that Page2 is partially visible alongside Page1, and both Page1 and Page3 are partially visible with Page2, we need to use contentPadding. Let’s add it and observe the result. What…
When developing Kotlin or Compose Multiplatform applications, sometimes dependencies are not supported in Kotlin Multiplatform, and we need a way to make them work. There are several ways to use…
Every Android developer has been there: you push your code, kick off your CI pipeline, and then… wait. And wait. And wait some more. Just to find out if your UI tests pass. In my case, I was waiting…
Disclaimer: This article aims to raise awareness within the community about the potential risks of app cloning, urging developers to exercise extra caution in app development endeavors. While…
When working with Kotlin, it’s easy to stick to the basics. But some of its lesser-known features can really take your code to the next level! Kotlin has over 60 features but developers only use…
If you’re an Android developer, you may know of a recent policy enforcement from Google Play around READ_MEDIA_IMAGES permission. Unfortunately I did not. In this post, we’ll share our experience of…
In the digital age, filtering out NSFW (Not Safe for Work) content is crucial for ensuring a safe and appropriate online environment. Whether you’re developing an Android app, there are times when…
When you’ve worked on a large Android application with many Gradle modules, navigation is a central challenge that often comes up. In this exploratory article, I wanted to quickly experiment with…
In my previous article on Retrofit, I explained how to handle token expiration using OkHttp’s Authenticator and Interceptor. However, many modern Android applications are switching to Ktor Client as…