引入一個其他模塊庫作為module的時候遇到下面的報錯:
unspecified’ depends on one or more Android Libraries but is a jar
引入的模塊項目版本不一致跨算,導致的沖突。
比如: android support包的版本不對椭懊,自帶的是 android-support-v4.jar, 但項目中使用的是support-v13:
compile ‘com.android.support:support-v13:+’
如果直接使用自帶的support-v4,則會和項目中的support-v13發(fā)生版本沖突诸蚕,報下面的錯誤:
解決方法是 直接 exclude 不需要的 庫。
compile ("com.meiyou:live_answer:${LIVE_ANSWER_VERSION}"){
? ? ? ? ? ? ? ? exclude(group:"com.meiyou", module : "account")
? ? ? ? ? ? }