«Не удалось проанализировать конфигурацию Gradle модуля приложения Android» в Android Studio? ошибка

Я разрабатываю приложение для Android, создающее реактивный ранец, используя firebase, но когда я запускаю проект, я получаю следующее исключение

Не удалось проанализировать конфигурацию Gradle модуля приложения Android. Устранение проблем со сборкой Gradle и/или повторная синхронизация Я последовал этому ответу Файл градиента проекта Android Studio изменился? но это не решило мою проблему

ниже моего файла app.gradle

 plugins {
        id 'com.android.application'
        id 'org.jetbrains.kotlin.android'
        id 'kotlin-kapt'
        id 'com.google.gms.google-services'
    }
    
    android {
        compileSdk 33
    
        defaultConfig {
            applicationId "com.example.firebasegooglesignjetpackcompose"
            minSdk 24
            targetSdk 33
            versionCode 1
            versionName "1.0"
    
            testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
            vectorDrawables {
                useSupportLibrary true
            }
        }
    
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
            }
        }
        compileOptions {
            sourceCompatibility JavaVersion.VERSION_1_8
            targetCompatibility JavaVersion.VERSION_1_8
        }
        kotlinOptions {
            jvmTarget = '1.8'
        }
        buildFeatures {
            compose true
        }
        composeOptions {
            kotlinCompilerExtensionVersion '1.4.3'
        }
        packagingOptions {
            resources {
                excludes += '/META-INF/{AL2.0,LGPL2.1}'
            }
        }
        buildToolsVersion '33.0.0'
        ndkVersion '33.0.0'
    }
    
    dependencies {
    
        implementation 'androidx.core:core-ktx:1.7.0'
        implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
        implementation 'androidx.activity:activity-compose:1.3.1'
        implementation "androidx.compose.ui:ui:$compose_ui_version"
        implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version"
        implementation 'androidx.compose.material:material:1.2.0'
        testImplementation 'junit:junit:4.13.2'
        androidTestImplementation 'androidx.test.ext:junit:1.1.5'
        androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
        androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_ui_version"
        debugImplementation "androidx.compose.ui:ui-tooling:$compose_ui_version"
        debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_ui_version"
        implementation platform('com.google.firebase:firebase-bom:31.5.0')
    
        implementation 'com.google.firebase:firebase-auth-ktx:21.3.0'
        implementation 'com.google.android.gms:play-services-auth:20.5.0'
    
        implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.6.0"
        implementation "androidx.lifecycle:lifecycle-runtime-compose:2.6.0"
        implementation "androidx.navigation:navigation-compose:2.5.3"
        implementation "io.coil-kt:coil-compose:2.2.2"
    
    
    }

ниже build.gradle

buildscript {
    ext {
        compose_ui_version = '1.4.0'
    }
    dependencies {
        classpath 'com.google.gms:google-services:4.3.15'
    }

}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
    id 'com.android.application' version '7.2.1' apply false
    id 'com.android.library' version '7.2.1' apply false
    id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
    id 'com.google.gms.google-services' version '4.3.15' apply false
}
task clean(type: Delete) {
    delete rootProject.buildDir
}

Я хочу знать, где я делаю ошибку. Я использую версию bumble для Android Studio.

Если вы попытаетесь авторизоваться в Firebase с помощью Google, то я думаю, что этот ресурс поможет. Вот соответствующий репозиторий.

Alex Mamo 18.04.2023 09:59
0
1
75
1
Перейти к ответу Данный вопрос помечен как решенный

Ответы 1

Ответ принят как подходящий

Я исправил проблему, обновив версию студии Android с версии bumble до фламинго.

Другие вопросы по теме