I tried to build jitsi meet based on react-native but it stucks in bundleReleaseJsAnd assets and then throw this error :
Process 'command 'node'' finished with non-zero exit value 1
I tried to build jitsi meet based on react-native but it stucks in bundleReleaseJsAnd assets and then throw this error :
Process 'command 'node'' finished with non-zero exit value 1
In my case I had error in React Native side, I fixed it and I was able to generate bundle
I solved the problem in my Putting
project.ext.react = [
entryFile: "index.js"
]
In App build.gradle
Okay so to clarify Sumakh's answer -- this happened to me because I had a build error in my app's JavaScript code. Ergo the build step invoking node to build the runtime bundle threw an exception. To find the script error, there are a couple of options:
This is because of code style for jshint errors in your HTML files. Use IDE which supports HTML files, and shows errors in HTML if any. Sometimes, errors in the HTML will still work in browser, but build will fail.