当我启动项目时,我收到ReferenceError: Can't find variable: __DEV__
错误。我已经注释掉了几乎所有的代码,现在只有这个
import React, {
Component,
Text
} from "react-native";
var {
AppRegistry
} = React;
class Root extends Component {
render() {
return (
<Text>App</Text>
);
}
}
AppRegistry.registerComponent("App", () => Root);
我试过擦除我的node_modules
文件夹并从Xcode中进行干净的构建。打包控制台输出不显示任何问题,Xcode控制台为空。在这一点上,我不知道还有什么可以尝试。
答案 0 :(得分:1)
问题是我的"strict"
文件中有.babelrc
。似乎react-native正在分配__DEV__
而没有声明它。