Android 由于bugsnag,React本机0.63生成失败

Android 由于bugsnag,React本机0.63生成失败,android,react-native,bugsnag,Android,React Native,Bugsnag,构建只是说: buildfile'/…/node\u modules/@bugsnag/react native/android/Build.gradle'行:17 * What went wrong: A problem occurred evaluating project ':bugsnag_react-native'. > java.lang.ExceptionInInitializerError (no error message) 上面提到的一行就是应用插件:“kotlin

构建只是说:

buildfile'/…/node\u modules/@bugsnag/react native/android/Build.gradle'行:17

* What went wrong:
A problem occurred evaluating project ':bugsnag_react-native'.
> java.lang.ExceptionInInitializerError (no error message)
上面提到的一行就是应用插件:“kotlin android”


我们只是将它添加到项目中,接下来的

我也遇到了同样的问题,我解决了这个问题的方法是将
android/build.gradle
中的Kotlin版本更新到
1.3.72

buildscript {
  ext {
    ...
    ext.kotlinVersion = '1.3.72'
  }
   ...
这个答案帮助我找出了问题所在: