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

今天遇到了一个问题

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

意思是
找到了多个与操作系统无关的文件,路径为“META-INF/Proguard/Androidx annotations.pro”

原因是导了一个第三方的依赖

    implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0-alpha'

解决方案:
在build.gradle 中加入下面代码

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

你可能感兴趣的:(安卓学习)