More than one file was found with OS independent path 'META-INF/proguard/androidx-annotations.pro'

后端 未结 7 493
轻奢々
轻奢々 2021-01-30 05:59

i am trying android WorkManager, The code is throwing error \"More than one file was found with OS independent path \'META-INF/proguard/androidx-annotations.pro

7条回答
  •  没有蜡笔的小新
    2021-01-30 06:56

    Adding this to my apps build.gradle file solved my problem.

    android {
      packagingOptions {
        exclude 'META-INF/proguard/androidx-annotations.pro'
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/ASL2.0'
      }
    }
    

提交回复
热议问题