android同時使用多個library時的問題

weixin_34262482發表於2014-12-11

劇情是這樣,我的app要使用四個library,如:LibraryA,LibraryB。這兩個庫又都需要support.v4.jar。

由於載入的時間不同,所以四個support.v4.jar不同,出錯的提示如下:

Found 5 versions of android-support-v4.jar in the dependency list, but not all the versions are identical (check is based on SHA-1 only at this time). All versions of the libraries must be the same at this time.Versions found are:

從提示中可以知道,這五個support-v4.jar不同,所以會發生衝突,

解決方法:把所有libs中的support-v4.jar檔案統一,然後重新整理這個包,讓他重新生成,然後就OK了

相關文章