web-dev-qa-db-fra.com

Une échec s'est produite lors de l'exécution d'org.jetbrains.kotlin.gradle.internal.kaptexecution

Tout à coup, je commence à obtenir cette erreur et je ne me fais pas d'idée de savoir pourquoi si quelqu'un me permet de savoir où cette erreur est utile. Autant que je puisse obtenir, c'est ceci à cause de la nouvelle mise à jour de Android Studio. Résumé détaillé de l'erreur que je reçois.

Task :app:kaptDebugKotlin
    ANTLR Tool version 4.5.3 used for code generation does not match the current runtime version 4.7.1ANTLR Runtime version 4.5.3 used for parser compilation does not match the current runtime version 4.7.1ANTLR Tool version 4.5.3 used for code generation does not match the current runtime version 4.7.1ANTLR Runtime version 4.5.3 used for parser compilation does not match the current runtime version 4.7.1C:\Users\shubh\Downloads\MarginCalculator\app\build\generated\source\kapt\debug\com\kotlin_developer\margincalculator\DataBinderMapperImpl.Java:10: error: cannot find symbol
    import com.kotlin_developer.margincalculator.databinding.FragmentCalculatorScreenBindingImpl;

    symbol:   class FragmentCalculatorScreenBindingImpl

    Task :app:kaptDebugKotlin FAILED
    location: package com.kotlin_developer.margincalculator.databinding
    FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:kaptDebugKotlin'.
> A failure occurred while executing org.jetbrains.kotlin.gradle.internal.KaptExecution
   > Java.lang.reflect.InvocationTargetException (no error message)

* 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 17s
29 actionable tasks: 27 executed, 2 up-to-date
137
Shubham Tater

Dans mon cas, j'utilisais des coroutines, mais j'oublie d'ajouter des extensions de Kotlin et un support de Coroutines pour la chambre

dEF ROOM_VERSION = "2.2.6" Mise en œuvre "Androidx.Chambres de :room-ktx:romarfversion"

0
mahmood

Dans mon cas, la version de la kotlin (à partir du 1.4.21 au 1.3.21) a résolu mon problème.

buildscript { 
ext.kotlin_version = '1.3.21'

repositories {
    google()
    jcenter()
    
}
dependencies {
    classpath 'com.Android.tools.build:gradle:4.1.1'
    
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" }

}

0
RANAJEET BARIK