sofensymbole
sofensymbole
https://github.com/sofensymbole/Libpng-1.6.23 Try this link , it is created to remove vulnerability of libpng. app sucessfully uploaded by use of it.
 Hello , Let me know which NDK version you used for generating shared library. For me its giving error which is mentioned in screenshot.
``` SendAuth.Req request = new SendAuth.Req(); request.scope = PlatformConfig.getInstance().getWechatScope(); request.state = PlatformConfig.getInstance().getWechatState(); mManager.getAPI().sendReq(request); ``` After these lines of call , it does not provide any callback response . Please help...
``` public void handleResponse(SendAuth.Resp response) { switch (response.errCode) { case BaseResp.ErrCode.ERR_OK: String code = response.code; if (!TextUtils.isEmpty(code)) { callBack(ILoginListener.CODE_LOGIN_ING, ""); requestToken(code); } else { callBack(ILoginListener.CODE_AUTH_FAILED, ""); } break; case BaseResp.ErrCode.ERR_AUTH_DENIED:...