赞
踩
解决方法:
强制统一版本
在你的build.gradle(app module)文件下添加:
- configurations.all {
- resolutionStrategy.eachDependency { DependencyResolveDetails details ->
- def requested = details.requested
- if (requested.group == 'com.android.support') {
- if (!requested.name.startsWith("multidex")) {
- details.useVersion '24.1.0'
- }
- }
- }
- }
”details.useVersion”后面的版本号,根据自己所使用的版本更改。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。