fujianjin6471
fujianjin6471
安卓支付完成后拿不到回调
已按[该文档](https://github.com/little-snow-fox/react-native-wechat-lib/blob/master/docs/build-setup-android.md)进行了配置,RN端也按API文档写了: ``` DeviceEventEmitter.addListener('WeChat_Resp', resp => { console.log('res:', resp) if (resp.type === 'WXLaunchMiniProgramReq.Resp') { // 从小程序回到APP的事件 miniProgramCallback(resp.extMsg) } else if (resp.type === 'SendMessageToWX.Resp') { // 发送微信消息后的事件 sendMessageCallback(resp.country) } else if (resp.type...
Need to perform custom actions after long press an displayed image, is it able to do so?