반응형 레트로핏1 [Kotlin] Kotlin + Retrofit 통신 Kotlin + Retrofit으로 통신을 구현해보았습니다 . 일단 빈 Android Project를 만들고 build.gradle(Module:app) 에 다음 dependencies에 추가해 줍니다 . implementation 'com.squareup.retrofit2:retrofit:2.4.0' implementation 'com.squareup.retrofit2:converter-gson:2.4.0' 그다음 간단하게 통신을 확인하기 위해 MainActivity에 Retrofit코드를 추가해보겠습니다. val retrofit = Retrofit.Builder().baseUrl("http://localhost:3000") .addConverterFactory(GsonConverterFactory.c.. 2019. 6. 26. 이전 1 다음 반응형