美文网首页
React native 无法弹出调试控件的问题

React native 无法弹出调试控件的问题

作者: 师从小马哥 | 来源:发表于2018-02-24 15:49 被阅读0次

React Native 在debug模式下,可以通过摇动手机,弹出调试选项。但是今天利用了cocoapods 把react native 文件整理后,调试界面就弹不出了,其他功能正常。查了好久,发现是少在pods的 spec里写了DevSupport 这个模块。

pod 'React', path: '../node_modules/react-native', :subspecs => [
    'Core',
    'RCTActionSheet',
    'RCTAnimation', 
    'RCTGeolocation',
    'RCTImage',
    'RCTLinkingIOS',
    'RCTNetwork',
    'RCTSettings',
    'RCTText',
    'RCTVibration',
    'RCTWebSocket’,
    ‘DevSupport’
  ]

参考:
https://www.cnblogs.com/breezemist/p/6953373.html

相关文章

网友评论

      本文标题:React native 无法弹出调试控件的问题

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