关于gradle的总结
2016-06-24 本文已影响18人
背影杀手不太冷
标签(空格分隔): Android
1、当有些时候各个库冲突时,其中的有一个库要强制用某一个版本就可以用这句话强制使用指定的版本
例如:
//强制让所有用到了support-annotations的库都使用22.1.0的版本/
configurations.all {
resolutionStrategy.force 'com.android.support:support-annotations:22.1.0'
}