gradle – React Native assembleRelease app :: bundleReleaseJsAndAssets永远不会进展

我正在尝试使用React-native生成我的应用程序的发布版本:

./gradlew assembleRelease

这是进步,直到app :: bundleReleaseJsAndAssets停留在93%并且从未进展.我在终端上没有任何错误.

关于OS我在Mac OS上.

最佳答案 问题报道
https://github.com/facebook/react-native/issues/10078

如果您使用的是领域,请考虑以下评论:

:app:bundleReleaseJsAndAssets was trying to bundle the default.realm* in the root folder generated from the tests in jest… So it was hanging there.

It couldn’t decompile them or whatever. So i just deleted them and it worked again

我曾经在我的项目中拥有领域但删除了它.我仍然没有git跟踪的文件,闲逛.我只是删除了与领域相关的所有内容,它再次起作用

点赞