我正在使用IntelliJ开发Flutter应用程序。当我尝试生成生成文件时,它显示了一个错误。
A problem occurred configuring project ':flutter_crashlytics'.
> Failed to notify project evaluation listener.
> java.lang.AbstractMethodError (no error message)
答案 0 :(得分:0)
我遇到了相同的错误,修复非常容易。
转到android/build.gradle
并检查以下几行是否具有相同的版本(或更高版本):
ext.kotlin_version = '1.2.71'
classpath 'com.android.tools.build:gradle:3.2.1'
此外,转到android/gradle/wrapper/gradle-wrapper.properties
并仔细检查gradle值:
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip
就是这样。
让我知道;)