Android [JetpackCompose Android] Crashing when starting foreground service over API level 34 Background When I start the integration test in my app, it crached when starting foreground service. fun onCreate() { //... 2024.07.30 AndroidJetpack ComposeKotolin
Jetpack Compose [Kotlin/Jetpack Compose] How to put on the limitation of version code for lambda Answer If you want to add the limitation of version code for lambda you can do the below. checkManageExternalStorageCall... 2024.07.24 Jetpack Composekotlin
Android [Jetpack Compose / Android] How to separate assembling your application file Prerequisites You already defined productFlavor in your module level build.gradle.kts. productFlavors { create("developm... 2024.06.26 AndroidJetpack Compose
Android [Android/Jetpack Compose] How to migrate Data Access Object (Android Room) with re-writing the column name? When you want to migrate your app-database created by Room you have to do migration for notify the system to change some... 2024.06.16 AndroidJetpack Composekotlin
Android [Android/Jetpack Compose] how to use `context` in Unit test? You may want to use context in your unit test in jetpack. But if you do nothing you may get error some kinds of context.... 2024.06.16 AndroidJetpack Compose
Android How to prevent contents overwrapping by keybord? Problem I've implemented textfield features to create login screen. But textfields doesn't show because of overwrapping ... 2024.06.16 AndroidJetpack Compose
Android [Android/Jetpack Compose] Coil ~cache network images for either device or memory~ What is Coil? Coil is an image loading library for Android backed Kotlin Coroutines Detail information is here. You can ... 2024.06.16 AndroidJetpack Compose
Android [Android/Jetpack Compose] Json Serearization ~ How to ignore missing fields ~ What I faced on the problem When I retrieve the json data from API, I faced an issue. The error occured when retrieving ... 2024.06.16 AndroidJetpack Compose
Jetpack Compose [Android/Jetpack Compose] Basic philosophy of developing android application About When you initialize to develop android application, you have wondered which tools or liblralies should you use. I ... 2024.06.01 Jetpack Composekotlin
Jetpack Compose [JetpackCompose/Android] DAO object doesn’t update and how to solve this Tech stack Jetpack Compose Room⭐️ //related this article Daggar hilt In my case, I had to update the room object through... 2024.05.16 Jetpack Composekotlin