Android-youtube-player: More than one file was found with OS independent path 'META-INF/core_release.kotlin_module'

Created on 16 Mar 2020  路  1Comment  路  Source: PierfrancescoSoffritti/android-youtube-player

Getting This Error When Adding This Library into My Project!
More than one file was found with OS independent path 'META-INF/core_release.kotlin_module'

question

Most helpful comment

Put this in your build.gradle file inside of the android { } part

// this is needed because I'm importing 2 modules called "core"
packagingOptions {
  exclude 'META-INF/core_release.kotlin_module'
}

>All comments

Put this in your build.gradle file inside of the android { } part

// this is needed because I'm importing 2 modules called "core"
packagingOptions {
  exclude 'META-INF/core_release.kotlin_module'
}
Was this page helpful?
0 / 5 - 0 ratings