Sebastian Sellmairblog.sellmair.io·Dec 19, 2024Say Hello to 'Compose Hot Reload' (Firework)Disclaimer: This is a public version of an internal blog post within JetBrains. Some parts were removed, to save some surprises for later. Gullible me; I posted a screen recording into the #kotlin-random Slack channel on October 8th. Alongside this s...4 likes·1.5K readscompose
Shreyas Patilblog.shreyaspatil.dev·Nov 11, 2024Skipping the invocation of intermediate composablesHey Composers 👋🏻, Jetpack Compose is now standard in Android app development, making performance optimization with Jetpack Compose an important topic. This is a short blog about recomposition optimization, where I'll walk you through the concept of...3 likes·3.9K reads#AndroidDevcompose-compiler
Urvish Suhagiyaurvishsuhagiya.hashnode.dev·Oct 27, 2024Docker Compose & YamlDocker Compose Docker Compose is a tool that allows you to define and manage multi-container Docker applications using a simple YAML file called docker-compose.yml. With Docker Compose, you can: Define Services: Specify the various services that mak...3 likesDocker
Romman Sabbirrommansabbir.com·Oct 4, 2024Monitor Internet Connectivity in Jetpack Compose! 📶 ✨Hello, and welcome to this article where we will delve into a Jetpack Compose function that is not only lifecycle-aware but also adept at checking internet connectivity using the most up-to-date APIs available. This function is designed to utilize th...117 readsAndroid Application Developmentandroid app development
Rajendra Patilrajendrapatil9949.hashnode.dev·Aug 17, 2024#90DaysOfDevops | Day 18Docker ComposeDocker Compose is a tool that allows you to define and manage multi-container Docker applications. It uses a YAML file to define the services, networks, and volumes required for the application, making it easy to spin up and manage comp...#90daysofdevops
Romman Sabbirrommansabbir.com·Aug 13, 2024Why not JetPack Compose with DiffUtil?DiffUtil is a tool in Android's RecyclerView library that helps update lists efficiently. It compares an old list with a new list to find the differences. Instead of replacing the whole list and redrawing everything, DiffUtil figures out the smallest...10 likes·319 readsAndroid Application DevelopmentAndroid
Sebastian Sellmairblog.sellmair.io·Jul 22, 2024Setting up Kotlin Multiplatform (+Compose)Kotlin Multiplatform (De)Wizard Project Wizards can be great; they spare us from doing repetitive, boring, boilerplate tasks over and over again. However: Wizards are no replacement for education or documentation: I have seen so many engineers gettin...4 likes·2.5K readsKotlin
Subhadip Daslearndroid.hashnode.dev·Jun 1, 2024Leverage the essentials: Jetpack Compose best practicesRecently, I started a new project where I decided to use Jetpack Compose for the UI layer. Alongside this, I aimed to explore best practices for using Compose effectively, with a particular focus on performance optimizations techniques and options. W...105 readscompose
Joe Roskopfblog.joetr.com·May 22, 2024Compose Guard: Detecting Regressions In Jetpack ComposeAs Jetpack Compose becomes more widely used across Android (and Multiplatform projects!), detecting regressions via tooling becomes more important to shift left and detect regressions earlier in the development cycle instead of relying on manually ca...414 readsJetpack Compose
Shreyas Patilblog.shreyaspatil.dev·May 20, 2024Effortless Compose Compiler report analysisHey Androiders 👋🏻, If you're building an app with Jetpack Compose, you might know that to make your app perform well with as few recompositions as possible, you should use stable parameters in the composable function, and so on. To do this, the Com...26 likes·1.9K reads#AndroidDevAndroid