Android

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() { //...
Android

[Web/HTML]input tag in form must have **name** attribute

Howdy! I'm developing new application which can transfer and upload files between smarthphone and any devices which can ...
Android

[Android] How to solve the problem the internal testing in Google Play Store doesn’t show anything despite releasing for internal testing

I build the app of release version and try to execute internal test through Google Play Store. But It shows no item foun...
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...
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...
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....
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 ...
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 ...
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 ...
Android

[Android/Flutter] How to build your `aab` file as a production build?

You just write down on the console flutter build appbundle --dart-define=FLAVOR=production --release --flavor production...