0

I'm using Kotlin version 1.3.7 . So when I upgrade to 1.4.10 I get the compiler error

Cause: cannot find META-INF.versions.9.module-info: module-info found in META-INF/versions/9/module-info.class

Is there any help?

Bulma
  • 990
  • 3
  • 16
  • 35

1 Answers1

1

Please add the following code inside android block which is present in your app-level gradle file.

android 
{
    ...
    packagingOptions {
        exclude 'META-INF/atomicfu.kotlin_module'
    }
}
SVK
  • 676
  • 1
  • 5
  • 17