缺少 google_app_id。 Firebase Analytics 在迁移后被禁用 不推荐使用 Flutter 的 Gradle 插件的命令式应用

问题描述 投票:0回答:1

我刚刚按照这个官方链接迁移了 Flutter 的 Gradle 插件。 但是,我收到错误消息

Missing google_app_id. Firebase Analytics disabled

我尝试从here寻找解决方案,因为我遇到了同样的错误,但解决方案说我必须将

implementation platform('com.google.firebase:firebase-bom:32.7.3')
implementation 'com.google.firebase:firebase-analytics'
添加到应用程序级build.gradle文件中。

当我这样做时,我收到错误

您的项目需要更新版本的 Kotlin Gradle 插件。 │ │ 在 https://kotlinlang.org/docs/releases.html#release-details 上查找最新版本, │ │ 然后更新 /Users/settasit/FlutterDev/lune/android/build.gradle: │ │ ext.kotlin_version = ''

但是当我迁移项目时

ext.kotlin_version = ''
已经被删除了。

这是我的应用程序级 build.gradle 文件。

    plugins {
    id "com.android.application"
    id "kotlin-android"
    id "dev.flutter.flutter-gradle-plugin"
}

def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
    localPropertiesFile.withReader('UTF-8') { reader ->
        localProperties.load(reader)
    }
}

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
    flutterVersionCode = '1'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
    flutterVersionName = '1.0'
}

android {
    namespace "com.settasit.lune"
    compileSdk flutter.compileSdkVersion
    ndkVersion flutter.ndkVersion

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    kotlinOptions {
        jvmTarget = '1.8'
    }

    sourceSets {
        main.java.srcDirs += 'src/main/kotlin'
    }

    defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId "com.settasit.lune"
        // You can update the following values to match your application needs.
        // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
        minSdkVersion flutter.minSdkVersion
        targetSdkVersion flutter.targetSdkVersion
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
    }

    buildTypes {
        release {
            // TODO: Add your own signing config for the release build.
            // Signing with the debug keys for now, so `flutter run --release` works.
            signingConfig signingConfigs.debug
        }
    }
}

flutter {
    source '../..'
}

dependencies {}

这是我的项目级build.gradle文件

    allprojects {
    repositories {
        google()
        mavenCentral()
    }
}

rootProject.buildDir = '../build'
subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
    project.evaluationDependsOn(':app')
}

tasks.register("clean", Delete) {
    delete rootProject.buildDir
}

这是我的settings.gradle 文件

    pluginManagement {
    def flutterSdkPath = {
        def properties = new Properties()
        file("local.properties").withInputStream { properties.load(it) }
        def flutterSdkPath = properties.getProperty("flutter.sdk")
        assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
        return flutterSdkPath
    }
    settings.ext.flutterSdkPath = flutterSdkPath()

    includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")

    repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
    }
}

plugins {
    id "dev.flutter.flutter-plugin-loader" version "1.0.0"
    id "com.android.application" version "7.3.0" apply false
    id "org.jetbrains.kotlin.android" version "1.7.10" apply false
}

include ":app"

如何使用迁移后的 Android Flutter 版本获取 Firebase 分析?

android flutter firebase firebase-analytics
1个回答
0
投票

解决了,我只需按照本节操作即可

#Examples: 
Google Mobile Services and Crashlytics

官方链接

我的错。

© www.soinside.com 2019 - 2024. All rights reserved.