当前位置:网站首页>ADB control installation simulator

ADB control installation simulator

2022-06-12 14:29:00 zz891422822

download sdk
http://tools.android-studio.org/index.php/sdk
Check 3+1+2 individual ..... Omit 1000 A word

Need to replace adb.exe Wait for three files to go to the night God simulator And copy adb.exe by nox_adb.exe

Connect to the night God Simulator
adb connect 127.0.0.1:62001
adb connect 127.0.0.1:62025
adb connect 127.0.0.1:62026 Each subsequent port number +1

View the connected emulators
adb divice/adb divices Super is often invalid. No processing method has been found yet, but it can be used normally

C:\Windows\system32>adb devices
List of devices attached
127.0.0.1:62001 device
127.0.0.1:62025 device

adb nodaemon server Cancel port occupation
netstat -ano | findstr “5037” As you can see, yes PID by 12260 The process of
tasklist | findstr “15968”
taskkill /f /pid 15968

Connect to the designated installation system
adb shell
adb -s 127.0.0.1:62001 shell

Install the software
adb install “app Absolute path ”

Overlay installation
adb install -r “app Absolute path ”

Specify simulator installation
adb -s ip:post “app Absolute path ” If an error is reported during the installation process, you can cd /data chmod 777 local

screenshots
adb shell screencap -p /sdcard/123.png

adb pull < Mobile path > < Native path > Pull information from your mobile phone to your local computer
Download the file adb pull /sdcard/123.png c:/360Safe Download screenshots to your computer
adb push < Native path > < Mobile path > Push information from local computer to mobile phone
Send a file adb push c:/360Safe/222.png /sdcard/

原网站

版权声明
本文为[zz891422822]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/03/202203010511191559.html