美文网首页
Process 'command 'cmd'' finished

Process 'command 'cmd'' finished

作者: _小爽_ | 来源:发表于2021-10-28 16:08 被阅读0次

React Native在Android studio 打包的时候突然报这个错,结果发现是,某个文件中的样式代码后少写了逗号,添加后打包即正常了。如下,color后应加逗号:

<Text
          style={{
            marginTop:150,
            textAlign:'center',
            fontSize:14,
            color: '#666666'
            flex:1,
          }}>
....

如果是用vsCode直接运行到手机上,就可以发现这个错,但是在AS中打包的时候就只提示Process 'command 'cmd'' finished with non-zero exit value 1,不好排查。

============2021.11.5 更新===============
今天又遇到这个错误,我就记得上次见过。。

image.png

点击看导出的log,耐心浏览就会发现是js出错。


image.png

如图打开文件检查16行附近,发现是15行末尾多了个“+”,删掉重新保存编译即可。


image.png

相关文章

网友评论

      本文标题:Process 'command 'cmd'' finished

      本文链接:https://www.haomeiwen.com/subject/hayvaltx.html