android studio firebase 错误:“无法解析 Android 应用程序模块的 Gradle 配置。解决 gradle 构建问题和/或重新同步。”

Posted

技术标签:

【中文标题】android studio firebase 错误:“无法解析 Android 应用程序模块的 Gradle 配置。解决 gradle 构建问题和/或重新同步。”【英文标题】:android studio firebase error: "Could not parse the Android Application Module's Gradle config. Resolve gradle build issues and/or resync." 【发布时间】:2021-08-25 09:59:59 【问题描述】:

这是我第一次在 android studio 中使用 firebase,我想使用实时数据库。当我在助手中单击连接到 firebase 时,我收到消息 "Could not parse the Android Application Module's Gradle config. Resolve gradle build issues and/or resync." 我在这里看到了很多答案,每个人都删除了不同的东西。

我不知道应该从我的模块中删除什么,我可以使用你的帮助。

我的 build.gradle 模块

plugins 
    id 'com.android.application'


android 
    compileSdkVersion 30
    buildToolsVersion "30.0.3"

    defaultConfig 
        applicationId "com.example.covid19gate"
        minSdkVersion 21
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    

    buildTypes 
        release 
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        
    
    compileOptions 
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    
    buildFeatures 
        viewBinding true
    


dependencies 

    implementation 'androidx.appcompat:appcompat:1.3.0'
    implementation 'com.google.android.material:material:1.3.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
    implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
    implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
    implementation 'androidx.navigation:navigation-fragment:2.3.5'
    implementation 'androidx.navigation:navigation-ui:2.3.5'
    implementation 'com.squareup.retrofit2:retrofit:2.4.0'
    implementation 'com.yarolegovich:discrete-scrollview:1.5.1'

    implementation("com.squareup.okhttp3:logging-interceptor:4.9.1")
    implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'

【问题讨论】:

【参考方案1】:

转到您的“项目”(不是应用程序)的 build.gradle 文件

allprojects 
    repositories 
        google()
        mavenCentral()
    
 

并从那里删除jcenter()line

【讨论】:

以上是关于android studio firebase 错误:“无法解析 Android 应用程序模块的 Gradle 配置。解决 gradle 构建问题和/或重新同步。”的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio、谷歌 Firebase、谷歌地图

尝试从 Android Studio 添加 Firebase 项目时出错

Android Studio中的Firebase android jars文档/javadoc [重复]

无法在 android studio 中设置 firebase

Android Studio和Firebase中的权限被拒绝错误[重复]

从 Android Studio 中的片段将数据写入 Firebase