要在现有项目上运行yarn run android
,我会收到以下错误
java.lang.NullPointerException(无错误消息)
但如果我删除以下代码形式build.gradle
exec {
commandLine 'security', '-q', 'find-generic-password', '-a',
currentUser, '-s', keyChain, '-w'
standardOutput = stdout
errorOutput = stderr
ignoreExitValue true
}
并运行./gradlew --debug它返回构建
建立成功
如果我再次运行
纱线运行android
我收到以下错误
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':app:processDevDebugGoogleServices'.
File google-services.json is missing. The Google Services Plugin
cannot function without it.
你知道为什么我收到这个错误吗?
答案 0 :(得分:3)
您的应用中似乎正在使用Google服务。您需要从Google开发者网站获取json文件。