I am dealing with a build problem :
A failure occurred while executing com.android.build.gradle.internal.tasks.MergeJavaResWorkAction
> 2 files found with path 'META-INF/annotation-experimental_release.kotlin_module'
and It can be fixed by adding those lines to build.gradle on app directory, as suggested on other tickets.
packagingOptions {
exclude("META-INF/*kotlin_module")
}
Is it safe to exclude META-INF/? is it can cause any problems? I am not using kotlin on my code, that's come from other sdks .