StephenWong 2016-09-13
Jenkins报ModuleVersionNotFoundException,但是本地AndroidStudio可以编译通过。
解决:把本地引用aar的包名字改成小写字母
=============================
Couldnotfindsupport-compat.aar
解决方法调换maven{url'https://maven.google.com'}和jcenter()
allprojects{
repositories{
maven{url'https://maven.google.com'}
jcenter()
}
}