一:
A problem occurred evaluating project ':app'.
SDK location not found. Define location with sdk.dir in the local.properties file or with an ANDROID_HOME environment variable.
这个错误,先检查是否配置了sdk环境变量,在Mac下即使配了还是报了这个错,这时从其他android项目下copy一个local.properties文件到生成的android文件夹下就行了。
二:
这个错误是因为babel-preset-react-native库版本不对应。
需要在终端输入如下:
npm uninstall babel-preset-react-native
npm install babel-preset-react-native@2.1.0
@L_502_0@ 原文链接:https://www.f2er.com/react/303055.html