2

我正在尝试从 android 应用程序向 RESTful API 发出请求,使用改造来发出请求,路标进行身份验证和改造路标以连接两者,但我在请求中收到此错误:

java.lang.VerifyError: com/squareup/okhttp/internal/http/HttpConnection$AbstractSource

知道为什么会这样吗?

编辑:Logcat 错误日志:

07-02 09:15:30.626 28584-29830/com.example E/dalvikvm﹕ Could not find class 'okio.ForwardingTimeout', referenced from method com.squareup.okhttp.internal.http.HttpConnection$AbstractSource.<init>

4

1 回答 1

0

原来我使用的是一个过时的 okio 版本,它不包含所需的类。刚刚从square/okio 的 github 站点下载了最新的一个,它工作正常。

于 2015-07-02T14:13:54.723 回答