一直在考虑编写Android模块的反应,但我很难调试我的原生android代码...
我可以调试本机反应原理JS而不发布......
有任何想法吗????
使用Android记录器.例如:
import android.util.Log; // later Log.e("MyComponent", "Message to log");
然后使用logcat来监视您设置的消息:
adb logcat *:S MyComponent:V
或者查看您的消息以及所有其他React错误和警告:
adb logcat *:S ReactNative:V ReactNativeJS:V MyComponent:V