AndroidStudio More than one file was found with OS independent path " META-INF/proguard/androidx-an"

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/kururunga/article/details/85257898

解决方法:
在build.gradle(moduel.app)下的android标签下加上,exclude里加上路径即可

  packagingOptions {
        exclude 'META-INF/proguard/androidx-annotations.pro'
    }

sync一下

猜你喜欢

转载自blog.csdn.net/kururunga/article/details/85257898