111950
使用的是 implementation('cn.leancloud:realtime-android:6.1.8') 这个版本,文本发送没问题,就是图片发送出问题 public void sendImageMessage(String imagePath) { AVFile file = null; try { file = AVFile.withAbsoluteLocalPath(new File(imagePath).getName(), imagePath); } catch (FileNotFoundException e) { e.printStackTrace(); } AVIMI…