[Android] Remember the adb debugging port of each Android emulator

If you have a problem with your computer, the emulator and the Android development environment will basically have to be reinstalled...
so write down the debugging ports of each Android emulator here for future needs and for friends to check.

Common simulator debugging port

Android emulator port
Night God Simulator 62001
Happy Simulator 21503
BlueStacks (BlueStacks simulator) 5555
Lightning simulator 5555
Everyday Simulator 5037
NetEase MuMu 7555
Android emulator master 54001

ADB commonly used commands

adb, which is the abbreviation of Android Debug Bridge, Android Debug Bridge, is a command line tool of C/S architecture.

Common commands are as follows:

adb command meaning
adb connect Connect to Android devices remotely
adb devices Get device list and device status
adb get-state 21503
adb logcat Print Android system log
adb forward Redirect the specified port on the host to the specified port of the device
adb kill-server End adb service
adb start-server Start adb service
adb shell Invoke commands in Android

Guess you like

Origin blog.csdn.net/weixin_40849588/article/details/103192803