개복치개발자 강의는 아래의 링크에서 확인할 수 있습니다.
간단한 Retrofit 예제를 한번 해보도록 하겠습니다.
우선적으로 gradle에 implementation을 해줍니다.
<uses-permission android:name="android.permission.INTERNET"/>
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
폴더 구조는 아래와 같고
코드는 아래와 같습니다.
다음 글에서 Retrofit + Livedata + ViewModel + Coroutine을 이용해서 한번 해보겠습니다.
'Android Jetpack' 카테고리의 다른 글
Simple Coroutine - 1 (코루틴이란?) (0) | 2022.02.12 |
---|---|
Retrofit - 3 ( Retrofit + Livedata + ViewModel) (0) | 2022.02.08 |
Retrofit - 1 (Retrofit / GSON이란?) (0) | 2022.02.04 |
Android Room - 5 (Room + ViewModel + ViewModelScope + LiveData) (0) | 2022.01.27 |
Android Room - 4 (Room Muti Table / Show DB) (0) | 2022.01.22 |