endian11
2020-01-07 d7b1bfcc035a6ba2b6e67db88f4ab04ef3448e3f
lib/src/main/java/com/anyun/exam/lib/SvrManager.java
@@ -69,13 +69,13 @@
        }
    }
    public void at_sendCmd(String s) {
    public void sendCmd(int cmd,String s) {
        if (!checkRemoteIsNull()){
//            try {
//                remoteInterface.at_sendCmd(s);
//            } catch (RemoteException e) {
//                e.printStackTrace();
//            }
            try {
                remoteInterface.SendCmd(cmd,s);
            } catch (RemoteException e) {
                e.printStackTrace();
            }
        }
    }
@@ -127,6 +127,7 @@
            if (mCallback != null){
                mCallback.callBackMsg(cmd, json);
            }
        }