【问题标题】:Error when I add apply plugin: 'com.google.gms.google-services'添加应用插件时出错:'com.google.gms.google-services'
【发布时间】:2021-08-01 23:49:28
【问题描述】:

我正在尝试将 Firebase 与 Flutter 项目相关联,并且我按照 Firebase 指南中的说明进行了所有操作。但是当我将apply plugin: 'com.google.gms.google-services' 添加到android/app/build.gradle 时,控制台中出现此错误:

FAILURE: Build failed with an exception.

* Where:
Build file 'C:\Users\yassine\AndroidStudioProjects\chat\android\app\build.gradle'
  line: 25

* What went wrong:
A problem occurred evaluating project ':app'.
> com.google.common.util.concurrent.ExecutionError: java.lang.ClassFormatError: Illegal UTF8 string in constant pool in
  class file com/google/gms/googleservices/GoogleServicesPlugin$PluginType

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

这是我的android/app/build.gradle

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

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
    throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

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

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

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
    compileSdkVersion 30

    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 "userapp.chat"
        minSdkVersion 23
        targetSdkVersion 30
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
        multiDexEnabled true
    }

    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 {
    implementation platform('com.google.firebase:firebase-bom:28.3.0')
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.google.firebase:firebase-analytics'
    implementation 'com.android.support:multidex:1.0.3'
}

这是android/build.gradle

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

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

allprojects {
    repositories {
        google()
        jcenter()
    }
}

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

task clean(type: Delete) {
    delete rootProject.buildDir
}

【问题讨论】:

    标签: firebase flutter dart google-cloud-firestore plugins


    【解决方案1】:

    显然文件中没有错误。请尝试以下操作:

    运行命令:

    flutter clean
    

    然后,运行:

    flutter pub get 
    

    执行项目。

    【讨论】:

      猜你喜欢
      • 2020-08-29
      • 1970-01-01
      • 1970-01-01
      • 2018-01-06
      • 2019-11-09
      • 2022-09-20
      • 1970-01-01
      • 2020-11-13
      • 2021-12-22
      相关资源
      最近更新 更多