Android CI/CD for Beginners - Part 1: IntroductionStop building everything manually. Learn how modern Android teams automate their development workflow This series is designed to provide a complete understanding of CI/CD for Android development. In PJul 5, 2026·6 min read
A Guide to Using Singleton Design Pattern in AndroidThe Singleton pattern is one of the most commonly used design patterns in Android development. It ensures that a class has only one instance throughout the application's lifecycle and provides a global point of access to that instance. Imagine a scen...Mar 26, 2025·3 min read
Quick guide to Launch Modes in AndroidLaunch modes in Android define how activities are created and managed in the task stack when they are opened Launch modes are mainly defined in the manifest within an activity’s declaration but can also be set using Intent flags in code. Here are th...Mar 13, 2025·4 min read
Quick guide to Android activity lifecycleA brief and quick guide on lifecycle of an activityJan 27, 2025·2 min read
Recursion: A Beginner's guide to avoid StackOverflowYeah, yeah I can get it recursion can be really overwhelming, sometimes it can feel like it will damage ur brain. Let me help u to avoid itDec 26, 2022·3 min read