skip to Main Content

Thanks in advance, My problem is that after upgrading the Firebase Crashlytics, Analytics dependencies using firebase-bom:32.2.2 and kotlin version also (from 1.5.21 to 1.8.0), My project got broken and is unable to build, please help. Attached drive links of the build files both app lvl and project lvl and the file containing error detail with using stacktrace.

text
text
text

2

Answers


  1. Chosen as BEST ANSWER

    after trying a lot of things and doing so much RnD, I found this line which saved me and build the code. Here it is, kapt "org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.4.2" I Just added this line in the gradle build file and code build successfully, so basically it was asking for the jvm and here is the stack link on which I found this,

    Kotlin 1.7.10 with Dagger "A failure occurred while executing org.jetbrains.kotlin.gradle.internal.KaptWithoutKotlincTask$KaptExecutionWorkAction"

    Thank you


  2. Run your application with ./gradlew clean build command to see what’s exactly wrong with your code. You need to paste it into the Terminal in Android Studio.

    If you are not familiar with building from Terminal , read this

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search