본문 바로가기
android

[kotlin] Unable to Create Call adapter for io.reactivex.rxjava3.core 에러

by liz_devel 2022. 3. 31.

 

해결방법

1. build.gradle에 해당 종속성 포함 시킨 후 sync now

implementation 'com.squareup.retrofit2:adapter-rxjava3:2.9.0'

2. 위 사진과 같이 rxJava3 Adapter 호출하는 코드 넣어주기

.addCallAdapterFactory(RxJava3CallAdapterFactory.create())
반응형

'android' 카테고리의 다른 글

seald calss  (0) 2022.04.13
싱글톤 패턴이란?  (0) 2022.04.03
[kotlin] 키보드 숨기기  (0) 2022.03.17
[kotlin] 문자열에서 html tag 제거하기  (0) 2022.03.16
반복문 중단시키는 break 와 return의 차이  (0) 2022.02.25