如何解决“由于上述问题,无法构建插件 cloud_firestore。”

Posted

技术标签:

【中文标题】如何解决“由于上述问题,无法构建插件 cloud_firestore。”【英文标题】:How to solve "The plugin cloud_firestore could not be built due to the issue above." 【发布时间】:2020-08-05 00:30:03 【问题描述】:

我仍在学习 Firebase 和 Flutter。当我第一次尝试连接 Firebase 时出现错误。我在 Firebase 网站上一步一步安装它。但在 android Studio 中,红色下划线显示错误。我该如何解决这个问题?

在这个文件中,他显示了错误。这是安装 Firebase 时编辑的文件 Project/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 28

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

    lintOptions 
        disable 'InvalidPackage'
    

    defaultConfig 
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId "kasun.com.flutterbookmanger"
        minSdkVersion 16
        targetSdkVersion 28
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        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 "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:multidex.1.0.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'

查看此屏幕截图

这是另一个已编辑的文件。 Project/build.gradle文件

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

    dependencies 
        classpath 'com.android.tools.build:gradle:3.1.2'
        classpath 'com.google.gms:google-services:4.0.1'
        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

错误代码 如何解决这个问题?请帮忙。

【问题讨论】:

从您的错误中找不到 com.android.support.multiex.1.0.3` 尝试使用 androidX multidex implementation "androidx.multidex:multidex:2.0.0 还可以查看如何启用 multidex developer.android.com/studio/build/multidex @griffins 我改变了。但是问题没有解决 再次尝试flutter clean /delete build文件夹十运行 @griffins 如何清理 删除项目中的 build 文件夹或终端上的项目文件夹或 cmd 类型“flutter clean”。 【参考方案1】:

试试这个:

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

我遇到了这个问题,它与 firebase 无关。

【讨论】:

【参考方案2】:

尝试更新 gradle 版本,应该可以正常工作

在 Proect/build.gradle 文件中

dependencies 
    classpath 'com.android.tools.build:gradle:4.1.1'
    ...
    ...

那么你必须在 YOUR_APPLICATION_FOLDER/gradle/wrapper/gradle-wrapper.properties 中将其更新为

distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip

这帮助我解决了同样的错误

【讨论】:

【参考方案3】:

我通过从模拟器(内存)关闭应用程序来解决这个问题。从头开始,希望对你也有帮助。

【讨论】:

【参考方案4】:

神奇的命令行“flutter clean”为我完成了这项工作

【讨论】:

以上是关于如何解决“由于上述问题,无法构建插件 cloud_firestore。”的主要内容,如果未能解决你的问题,请参考以下文章

如何解决包冲突问题

如何解决包冲突问题

如何解决ajax跨域问题

MySQL 的 10048问题,如何解决?

如何解决smartgit的冲突问题

如何解决https传输图片的问题