-
Notifications
You must be signed in to change notification settings - Fork 339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ErrorDecoderInterceptor 不支持接口继承的 RetrofitClient #141
Comments
interface A{
@GET("/hello")
Object hello();
}
@RetrofitClient(baseUrl = "urlB")
interface B extends A{
}
@RetrofitClient(baseUrl = "urlC")
interface C extends A{
}
|
这种情况,目前是不支持的,此时拿不到retrofitClient。 根本原因是retrofit不支持,已经向Retrofit提过相关issue了,等待后续retrofit支持。 |
See prior issue at #109 (which I think should've been left open) |
Versions 2.4.0 and 3.1.0 are already supported |
You should close this issue. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: