Android 程序错误,can';t导出应用程序

Android 程序错误,can';t导出应用程序,android,proguard,Android,Proguard,当我导出应用程序时,即使在更新到Proguard 4.8之后,我也会收到一个错误。我能做什么?试试这个: [2013-01-25 15:20:55 - CQAQI] Proguard returned with error code 1. See console [2013-01-25 15:20:55 - CQAQI] Note: there were 208 duplicate class definitions. [2013-01-25 15:20:55 - CQAQI] Warning:

当我导出应用程序时,即使在更新到Proguard 4.8之后,我也会收到一个错误。我能做什么?

试试这个:

[2013-01-25 15:20:55 - CQAQI] Proguard returned with error code 1. See console
[2013-01-25 15:20:55 - CQAQI] Note: there were 208 duplicate class definitions.
[2013-01-25 15:20:55 - CQAQI] Warning: android.support.v4.view.ViewCompatJellybeanMr1: can't find referenced method 'int getLabelFor()' in class android.view.View
[2013-01-25 15:20:55 - CQAQI] Warning: android.support.v4.view.ViewCompatJellybeanMr1: can't find referenced method 'void setLabelFor(int)' in class android.view.View
[2013-01-25 15:20:55 - CQAQI] Warning: there were 2 unresolved references to program class members.
[2013-01-25 15:20:55 - CQAQI]          Your input classes appear to be inconsistent.
[2013-01-25 15:20:55 - CQAQI]          You may need to recompile them and try again.
[2013-01-25 15:20:55 - CQAQI]          Alternatively, you may have to specify the option 
[2013-01-25 15:20:55 - CQAQI]          '-dontskipnonpubliclibraryclassmembers'.
[2013-01-25 15:20:55 - CQAQI] Error: Please correct the above warnings first.
我也犯了同样的错误。

使用SDK级别4.2.2进行构建对我来说很有用

您尝试过按照错误消息所说的做吗?在配置文件中只有一行-libraryjars libs/jsoup-1.7.1.jar我有完全相同的问题,我也对解决方案感兴趣。
-dontwarn android.support.v4.view.**
-keep class android.support.v4.** { *; }