mvp 패턴을 공부하자

안드로이드에 mvp를 적극적으로 추가하기 위한 공부중 1. 첫번쩨 공부 정승욱님 블로그 게시글 링크 mvp 적용해야겠다고 생각하고 기본적인 샘플을 만들어 볼려고 이것 저것 시도 하였습니다. 앱을 만들면서... »

retrofit2 + okhttp3 + rxandroid2네이버 기계번역 사용하기

retrofit2 + rxandroid2 를 이용한 통신 rxandroid2 를 추가해 보았습니다. 1. dependencies 추가 compile 'com.squareup.okhttp3:okhttp:3.6.0' compile 'com.squareup.okhttp3:logging-interceptor:3.6.0' compile 'com.squareup.retrofit2:retrofit:2.1.0' compile 'com.squareup.retrofit2:converter-gson:2.1.0' compile 'io.reactivex.rxjava2:rxjava:2.0.1' compile 'io.reactivex.rxjava2:rxandroid:2.0.1' compile... »

retrofit2 + okhttp3 네이버 기계번역 사용하기

retrofit2 를 이용한 통신 가장 많이 사용되는 통신라이브러리를 이용해서 네이버기계 번역 앱을 만들어 보았습니다. 1. dependencies 추가 compile 'com.squareup.okhttp3:okhttp:3.6.0' compile 'com.squareup.okhttp3:logging-interceptor:3.6.0' compile 'com.squareup.retrofit2:retrofit:2.1.0' compile 'com.squareup.retrofit2:converter-gson:2.1.0' 2.... »