2015-01-05 223 views
0

我今天更新
Android的支持庫
支持Android庫後。
現在,當我創建一個新的項目後發生錯誤。錯誤發生更新Android支持庫和Android的支持庫

[2015-01-05 18:45:15 - CardLayout] Found 2 versions of android-support-v4.jar in the dependency list, 
[2015-01-05 18:45:15 - CardLayout] but not all the versions are identical (check is based on SHA-1 only at this time). 
[2015-01-05 18:45:15 - CardLayout] All versions of the libraries must be the same at this time. 
[2015-01-05 18:45:15 - CardLayout] Versions found are: 
[2015-01-05 18:45:15 - CardLayout] Path: D:\WorkingProjects\CardLayout\libs\android-support-v4.jar 
[2015-01-05 18:45:15 - CardLayout] Length: 995624 
[2015-01-05 18:45:15 - CardLayout] SHA-1: 3e4e879d0b3dc11f2feb3f55e77e3b5bd82c4a28 
[2015-01-05 18:45:15 - CardLayout] Path: D:\WorkingProjects\appcompat_v7\libs\android-support-v4.jar 
[2015-01-05 18:45:15 - CardLayout] Length: 995386 
[2015-01-05 18:45:15 - CardLayout] SHA-1: a13f8fe2c278737e2f0b6fcf00f6b2ae4034aacf 
[2015-01-05 18:45:15 - CardLayout] Jar mismatch! Fix your dependencies 


我能做些什麼?

+0

這發生了一次與我的項目。我的應用程序中包含了一個庫項目,它引用了android-support-v4.jar和不同平臺。也許這也適用於你? – clash

+0

是的,但現在該怎麼辦? –

+0

@clash你解決了這個問題? –

回答

0

兩個不同版本的android-support-v4.jar是衝突的。

如果你還在使用eclipse做:

  1. 對於每一個項目:
    1. 右鍵單擊您的項目
    2. 點擊 「Android的工具」 - > 「添加支持庫...」
  2. 清潔
  3. 構建
  4. 運行
+0

同樣的錯誤...現在我通過擴展Activity而不是ActionBarActivity來解決這個問題。 –