Android unspecified' depends on one or more Android Libraries but is a jar 的解決方法

weixin_33850890發表於2018-03-07

引入一個其他模組庫作為module的時候遇到下面的報錯:

unspecified’ depends on one or more Android Libraries but is a jar

1463139-6f1f17e9143ca7be

2 原因

引入的模組專案版本不一致,導致的衝突。

比如: android support包的版本不對,自帶的是 android-support-v4.jar, 但專案中使用的是support-v13:

compile ‘com.android.support:support-v13:+’

3 解決方法

如果直接使用自帶的support-v4,則會和專案中的support-v13發生版本衝突,報下面的錯誤:

1463139-6155ade8101fe3e7

解決方法是 直接 exclude 不需要的 庫。

compile ("com.meiyou:live_answer:${LIVE_ANSWER_VERSION}"){

                exclude(group:"com.meiyou", module : "account")

            }

相關文章