kaito

React

[React Native] Suddenly I couldn’t build my React Native App. (Cause and Solution))

Background Suddenly I couldn't build my app and console showed an error with red message, which said Error: EMFILE: too ...
未分類

[Typescript] My knowledge of how to handle your custom type :->

Typescript makes our codes more reliable. But for the bignner as me it's prety hard to understand what type is, what the...
iOS

[iOS/Swift] App structure in iOS

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

[Swift] About lazy

Introduction I didn't know what lazy affects and what lazy is. An official document says A lazy stored property is a pro...
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...
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...