Program type already present: com.google.common.util.concurrent.ListenableFuture

android studio 编译报错

Program type already present: com.google.common.util.concurrent.ListenableFuture

com.google.guava:listenablefuture 和 com.google.guava:guava
两个依赖中都有
com.google.common.util.concurrent.ListenableFuture

分析方法点我

最终解决方案:

android {
……
	configurations {
	//com.google.guava:listenablefuture 与 com.google.guava 冲突 下面非全局排除未生效
    	    all*.exclude group: 'com.google.guava', module: 'listenablefuture'
		}
……
    }

你可能感兴趣的:(Android,解决方案)