使用kotlin和Retrofit遇到的问题?

No type arguments expected for class Observable问题解决方法?

首先我使用的 依赖是 如下:

//后期使用retrofit网络访问框架
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
//转换json  挂代理的小心,即使关闭代理可能也会报错。关闭代理后重启AS,估计是AS3.0的bug
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
implementation 'com.squareup.retrofit2:adapter-rxjava:2.0.1'
implementation 'io.reactivex:rxandroid:1.1.0'
implementation 'com.squareup.okhttp3:okhttp:3.11.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.1.2'//日志

然后发现 我的

位置
报错,无法使用,原来是 导入包出差了,

删除,修改新包就行,如下:
这样就可以了

谢谢,真是我的遇到的问题,估计不少接触 kotlin+retrofit的同伴会遇到这个问题。

猜你喜欢

转载自blog.csdn.net/mawlAndroid/article/details/124192198