Android studio : 模拟器 真机 运行失败(mac电脑)

出现问题如下:

1:运行模拟器的时候:emulator  - 5570  disconnected

  清除adb.exe:adb kill-server

  重启adb.exe :adb start-server

*或者后边有:device supports but apk only supports  armeabi-v7a,x86

一般的模拟器是 x86 环境,真机是armeabi-v7a

https://blog.csdn.net/lwx675652056/article/details/79727004

2:终端问题:  daemon not running; starting now at tcp:5037

    查看5037 的占用情况:

    mac os: netstat -a | grep 5037

3:终端问题: could not install *smartsocket* listener: Address already in use

表示你的端口被占用了,需要杀掉 

查看端口:sudo lsof -i :你的端口号 

4:android studio  不识别真机

参考:https://www.jianshu.com/p/d97e1b2282ff

5:adb: command not found

参考:https://blog.csdn.net/tymatlab/article/details/80989769

6.android studio   Session 'app': Error Installing APK

参考:https://blog.csdn.net/hzy670800844/article/details/84999484

这个对 模拟器有效果,但是对我这边的真机却没有效果

 

7.Mac下修改adb命令端口

(如果你的端口被占用实在清除不了,可以改端口,不过会有问题,如连接不上真机等等)

https://blog.csdn.net/mars_apples/article/details/82775133

8.installation did not complete successfully.See the IDE log for details

参考:https://www.jianshu.com/p/f181e7bddaee

9.安装apk 后 不在手机桌面显示app图标

参考:https://blog.csdn.net/yuxiaohui78/article/details/8245071

你可能感兴趣的:(系统)