Android Tip : Adb couldn't find device interface error I recently faced this error during my development and wanted to share with you all what I learned while debugging this. First of all, I’d take this blog post as an opporutnity to share with you briefly on how adb works. There are three major components : Adb Client : It’s a client that runs on your development machine and is used to send commands to your device Adb deamon : It’s a process that runs on your device/emulator. It’s responsible for receiving the commands that you issue via adb client and execute them in a new thread/process. Adb server : This process runs on your host machine and manages communication between your adb client and adb process on the device. The adb server runs on port 5037 (by default) and listens for commands that you issue via your adb client. As stated in the docs , the server then sets up connections to all running devices. It locates emulators by scanning odd-numbered ports in the range ...
As the title says, I usually use this blog to put down what's currently going on in my life.