firebase_core 当我开始构建项目时抛出这个错误

firebase_core throw this error when i start building the project

当我尝试 运行 应用程序时,它向我显示此错误

Launching lib\main.dart on sdk gphone x86 in debug mode...

Running Gradle task 'assembleDebug'...

FAILURE: Build failed with an exception.

  • What went wrong: Could not determine the dependencies of task ':firebase_core:compileDebugAidl'.

Could not resolve all task dependencies for configuration ':firebase_core:debugCompileClasspath'. Could not find com.google.firebase:firebase-common:. Required by: project :firebase_core

  • 尝试:运行 使用 --stacktrace 选项获取堆栈跟踪。 运行 使用 --info 或 --debug 选项以获得更多日志输出。 运行 使用 --scan 以获得完整的见解。

  • https://help.gradle.org

    获取更多帮助

在 7 秒内构建失败异常:Gradle 任务 assembleDebug 失败,显示 退出代码 1

我正在使用最新版本的 firebase_core

我已将 firebse 添加到我的项目中

build.gradle

rootProject.ext {
    set('FlutterFire', [
            FirebaseSDKVersion: '25.12.0'
    ])
}

dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation platform('com.google.firebase:firebase-bom:28.2.1')
    implementation "com.google.firebase:firebase-analytics"
}

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'

.....

buildscript {
    ext.kotlin_version = '1.3.50'
    repositories {
        google()
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.google.gms:google-services:4.3.8'

    }
}

我通过删除解决了这个问题 这 root.text 它所在的 firebase 版本 /build.gradle 然后我再次构建了项目。