Proguard:NoSuchMethodError:android.net.http.AndroidHttpClient.execute

时间:2014-05-21 07:20:23

标签: java android obfuscation proguard androidhttpclient

当我对构建和运行进行模糊处理时,我当然得到了这个,但我无法弄清楚如何修复它。

我尝试添加所有这些我的proguard配置文件,但它没有帮助:

-keep class android.net.http.** { *; }
-keep interface android.net.http.** { *; }
-keep class android.net.** { *; }
-keep interface android.net.** { *; }
-keep class android.net.http.AndroidHttpClient { *; }

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我能够通过添加:

来解决这个问题
-keep class org.apache.http.** { *; }

格儿