Hexi
Hexi
I think this needed to be merge
自问自答一下,经过一番努力,确定aurora-imui-react-native的glide为4.6.1时和项目的依赖不一致,在node_modules/aurora-imui-react-native/react-native-android/build.gradle 将组件的glide改为4.9.0解决闪退问题
> I had this same issue and it was caused by me changing my npm config proxy for npm install. I resolved it by resetting the proxy after npm install....
same, any progress?
> same, any progress? It workers now
同样的问题,建议pro提供一个配置可以指定源
Hello, is there any progress on this issue?
> 你好,请问你怎么解决的
我也是这个问题,你解决了么
这个问题困扰了一天,最后终于解决了 原因分析:这个问题的出现是因为今年1月份的时候对JMessageReactPackage.java做了一次commit,详细修改可见 https://github.com/jpush/jmessage-react-plugin/commit/4da1a83f5cb1deea91b9ce8e8b3857ebe0049bd0 。这个commit会导致更新后的JMessageReactPackage无法传递参数,因为在new JMessageModule(reactContext, false)中写死为false,用户无法传参,将JMessageReactPackage.java改为之前的版本就是正确的。按照文档走安装最新版本的话,用户100%会遇到这个问题。 解决方案:将node_modules/jmessage-react-plugin/android/src/io/jchat/android/JMessageReactPackage.java修改还原为之前版本,代码如下 ``` package io.jchat.android; import com.facebook.react.ReactPackage; import com.facebook.react.bridge.JavaScriptModule; import com.facebook.react.bridge.NativeModule; import com.facebook.react.bridge.ReactApplicationContext; import com.facebook.react.uimanager.ViewManager; import java.util.ArrayList; import java.util.Collections; import java.util.List; public class JMessageReactPackage implements...