请问问题解决了吗?
华为Mate60调用微信支付失败手机:华为Mate60 系统:鸿蒙4.0 微信版本:最新 依赖: implementation 'com.tencent.mm.opensdk:wechat-sdk-android-with-mta:+' 华为Mate60调用微信支付失败(换不起微信APP),后台日志打印: register app failed for wechat app signature check failed sendReq failed for wechat app signature check failed 与相关微信客服沟通:提交客服调起数据,查询不到唤起记录 相关代码: //初始化 api = WXAPIFactory.createWXAPI(requireContext(), bean.wxpaypost.appid) val intent = requireActivity().intent api?.handleIntent(intent, this) //点击支付时跳转微信 val req = PayReq() req.appId = bean.wxpaypost.appid req.partnerId = bean.wxpaypost.mch_id req.prepayId = bean.wxpaypost.prepay_id req.packageValue = "Sign=WXPay" req.nonceStr = bean.wxpaypost.nonce_str req.timeStamp = bean.wxpaypost.timestamp.toString() req.sign = bean.wxpaypost.sign val wxApi = WXAPIFactory.createWXAPI(requireContext(), req.appId) wxApi.registerApp(req.appId) wxApi.sendReq(req) 其他手机包括vivo、小米、荣耀(P20,鸿蒙2.0)都正常调起并支付,初步判断鸿蒙4.0有这个问题 APP名称:读乐星空 已上架华为应用商店.
2023-11-28解决了吗?
安卓开发微信支付在鸿蒙4.0不能正常调起微信如题,小米max和小米9可以调起,荣耀20(鸿蒙3.0系统)可以调起,但是nova8和mate40(鸿蒙4.0)不能调起,参数是后台统一返回的参数,请问这是什么原因引起的??怎么解决???对了,鸿蒙4.0没有微信支付的回调信息,就是 @Override public void onResp(BaseResp baseResp) { LogUtils.getInstance().e(baseResp.errStr); LogUtils.getInstance().e(baseResp.getType()+"==type"); } 没有打印日志。
2023-11-17有些手机是升级微信客户端版本后就没问题了,但有的手机已经升级到8.0.23最新版本了,还有此问题
基础库2.24.5报错?[图片][图片][图片]
2022-06-13Android客户端版本:8.0.16 基础库版本: 2.21.0
如何解决wx.getUpdateManager() 该api获取到的引用为null的问题?const updateManager = wx.getUpdateManager() updateManager.onCheckForUpdate(function(res) { // 请求完新版本信息的回调 console.log(res.hasUpdate ? '有新版本' : '无新版本') }) updateManager.onUpdateReady(function() { wx.showModal({ title: '更新提示', content: '新版本已经准备好,是否重启应用?', success: function(res) { if (res.confirm) { // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启 updateManager.applyUpdate() } } }) }) 在app.js onLaunch中执行以上代码,上报了以下错误 小程序后台错误日志: Cannot read property \'onCheckForUpdate\' of undefined TypeError: Cannot read property \'onCheckForUpdate\' of undefined at je.onLaunch (https://app.js:18:19) at je.<anonymous> (https://lib/WASubContext.js:2:2201446) at new je (https://lib/WASubContext.js:2:2202688) at a.<anonymous> (https://lib/WASubContext.js:2:2202819) at https://lib/WASubContext.js:2:2180329 at https://app.js:4:1 at u (https://lib/WASubContext.js:2:2244637) at https://usr/app-service.js:6194:10
2021-11-29