I'm new to Android development, and I have been instructed to help develop some of the Android apps from React Native. I have a working setup in which an emulated Android device can run this application. However, when the emulator starts, the process is adb.exeregenerated in the background at a speed of about 1 process per second. These processes apparently do not have / very little memory (144K according to the task manager), but over time this still adds a massive list of processes (about 3000 at the time of writing) that take up quite a bit of memory (which is already insufficient due to quite complex development tool chain).
Closing the emulator does not automatically end these processes. The only way I've found so far is working using taskkill /IM /F.
Is this the expected behavior? If not, how can I start by tracking the causes of behavior.
source
share