Android串口通信

参考github地址

https://github.com/licheedev/Android-SerialPort-API
https://github.com/licheedev/Android-SerialPort-Tool

导入串口第三方库

implementation "com.github.licheedev.Android-SerialPort-API:serialport:1.0.1"

出现的问题

Android:java.io.IOException: Cannot run program "/system/xbin/su": error=13, Permission denied
由于是新建项目targetSdkVersion默认是27 targetSdkVersion : 27, 出现Permission denied
解决办法是改成targetSdkVersion : 19,

你可能感兴趣的:(Android串口通信)