yy1717
2020-01-07 03e19b8cdea0ddd28da1a1738c5b62f7f97cd2e0
lib/src/main/java/com/anyun/exam/lib/SvrManager.java
@@ -123,10 +123,10 @@
     */
    IListenerInterface RemoteCallback = new IListenerInterface.Stub(){
        @Override
        public void onMessageArrived(String json) throws RemoteException {
        public void onMessageArrived(int cmd, String json) throws RemoteException {
            if (mCallback != null){
                mCallback.callBackMsg(json);
                mCallback.callBackMsg(cmd, json);
            }
        }