改造 2 以获得 Android 功能
Retrofit 2 for Android capabilities
我对 retrofit2 是否有兴趣:
- IPV6 支持
- 对于 HTTPS,如果证书是自签名的,我们可以使用 SHA1 并抑制任何警告吗?
- Android 2.2 支持。
Android 2.2 support
两者 the docs and the other docs 都表明 Retrofit 需要 Android 2.3。
其余的将由 OkHttp 处理,例如通过其 SSL configuration. Note that you should validate self-signed certificates, not "suppress any warnings", because doing that will get you kicked out of the Play Store and possibly sued。
关于 IPv6 支持,OkHttp3 似乎可以处理。
我对 retrofit2 是否有兴趣:
- IPV6 支持
- 对于 HTTPS,如果证书是自签名的,我们可以使用 SHA1 并抑制任何警告吗?
- Android 2.2 支持。
Android 2.2 support
两者 the docs and the other docs 都表明 Retrofit 需要 Android 2.3。
其余的将由 OkHttp 处理,例如通过其 SSL configuration. Note that you should validate self-signed certificates, not "suppress any warnings", because doing that will get you kicked out of the Play Store and possibly sued。
关于 IPv6 支持,OkHttp3 似乎可以处理。