onlybenyang

Results 3 issues of onlybenyang

I download a 7z file to the sdcard dir and try to extract it, but show me "SZ_ERROR_ARCHIVE" when I pass the file path (/storage/emulated/0/xxxxx/xxxx.7z) but extract as assets successfully....

```java @Override public void onReq(BaseReq baseReq) { WritableMap map = Arguments.createMap(); map.putString("openId", baseReq.openId); map.putString("transaction", baseReq.transaction); if (baseReq.getType() == ConstantsAPI.COMMAND_SHOWMESSAGE_FROM_WX) { ShowMessageFromWX.Req req = (ShowMessageFromWX.Req) baseReq; // 对应JsApi navigateBackApplication中的extraData字段数据 map.putString("type", "SendMessageToWX.Resp");...