Exception Flutter

Bonjour à tous, je débute dans la programmation mobile avec flutter, j’utilise Android Studio et je rencontre cette exception :
FAILURE: Build failed with an exception.

  • Where:
    Build file ‹ E:\flutter_projects\android\build.gradle › line: 11

  • What went wrong:
    A problem occurred evaluating root project ‹ android ›.

Could not find method implementation() for arguments [com.android.support:support-annotations:28.0.0] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

  • 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.
Get more help at https://help.gradle.org.

BUILD FAILED in 1s
Error: Gradle task assembleDebug failed with exit code 1

Si vous pouviez m’aider s’il vous plait, j’en serai vraiment ravi

Hello @Docteur-R13,

Pourrais-tu nous mettre le code de tes fichiers gradle-wrapper.properties, build.gradle du niveau projet et build.gradle du niveau application. Ca nous aidera à comprendre où est l’erreur.

Voici le code du fichier gradle-wrapper.properties :
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https://services.gradle.org/distributions/gradle-8.3-all.zip

Voici le code du fichier buid.gradle au niveau projet :
allprojects {
repositories {
google()
mavenCentral()
}
}

rootProject.buildDir = « …/build »

dependencies {
classpath « com.android.tools.build:gradle:8.0.2 »
}
subprojects {
project.buildDir = « ${rootProject.buildDir}/${project.name} »
}
subprojects {
project.evaluationDependsOn(« :app »)
}

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

Enfin, voici le code du fichier build.gradle au niveau du module app :
plugins {
id « com.android.application »
id « kotlin-android »
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
id « dev.flutter.flutter-gradle-plugin »
}

android {
namespace = « com.example.flutter_projects »
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion

compileOptions {
    sourceCompatibility = JavaVersion.VERSION_1_8
    targetCompatibility = JavaVersion.VERSION_1_8
}

kotlinOptions {
    jvmTarget = JavaVersion.VERSION_1_8
}

defaultConfig {
    // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
    applicationId = "com.example.flutter_projects"
    // You can update the following values to match your application needs.
    // For more information, see: https://flutter.dev/to/review-gradle-config.
    minSdk = flutter.minSdkVersion
    targetSdk = flutter.targetSdkVersion
    versionCode = flutter.versionCode
    versionName = flutter.versionName
}

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 ‹ androidx.annotation:annotation:1.9.1 ›

}