2012-05-26 191 views
0

從Eclipse導出我的項目以將其發送給測試時,出現以下錯誤。在Android中從Eclipse中導出項目時出現錯誤

Obsolete ProGuard file; use -keepclasseswithmembers instead of -keepclasseswithmembernames 

Issue: Looks for problems in proguard config files 
Id: Proguard 

Using -keepclasseswithmembernames in a proguard config file is not correct; it can cause some symbols to be renamed which should not be. 
Earlier versions of ADT used to create proguard.cfg files with the wrong format. Instead of -keepclasseswithmembernames use -keepclasseswithmembers, since the old flags also implies "allow shrinking" which means symbols only referred to from XML and not Java (such as possibly CustomViews) can get deleted. 

http://http://code.google.com/p/android/issues/detail?id=16384 

該鏈接不適合我,我不知道如何解決這個問題。我最近升級了我的ADT。

回答

相關問題