일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- IntentTestRule
- 구분선
- 재사용
- 리사이클러뷰
- 안드로이드개발레벨업교과서
- Error:Execution failed for task ':app:mergeDebugResources'
- binding adapter
- high order function
- Fragment 수동 추가
- searchview
- ActivityTestRule
- 안드로이드
- 스와이프
- espresso
- 뷰변경 감지
- LayoutManger
- recyclerview
- 안드로이드13
- 안드로이드스튜디오
- adapter
- 코틀린
- 고차함수
- 코딜리티
- ui test
- viewholder
- Android
- fragment
- 테마 아이콘
- Fragment에서 Activity의 함수 사용하기
- 생명주기
Archives
- Today
- Total
룬아님의 취중코딩
GitHub API를 사용하는 기본적인 Retrofit과 Koin 조합 본문
interface GitHubAPI {
@GET("/search/repositories")
suspend fun searchRepositories(@Query("q") searchKeyWord: String): RepositoriesResponse
@GET("repos/{repoUrl}")
suspend fun getRepositoryInfo(@Path("repoUrl", encoded = true) repoUrl: String): Repository
@GET("users/{id}")
suspend fun getUserInfo(@Path("id") userUrl: String): Owner
}
private const val BASE_URL = "https://api.github.com"
private const val CONNECT_TIMEOUT = 15L
private const val WRITE_TIMEOUT = 15L
private const val READ_TIMEOUT = 15L
val NetworkModule = module {
single { Cache(androidApplication().cacheDir, 10L * 1024 * 1024) }
single {
Interceptor { chain ->
chain.proceed(chain.request().newBuilder().apply {
header("Accept", "application/vnd.github.mercy-preview+json")
}.build())
}
}
single {
OkHttpClient.Builder().apply {
cache(get())
connectTimeout(CONNECT_TIMEOUT, TimeUnit.SECONDS)
writeTimeout(WRITE_TIMEOUT, TimeUnit.SECONDS)
readTimeout(READ_TIMEOUT, TimeUnit.SECONDS)
retryOnConnectionFailure(true)
addInterceptor(get())
addInterceptor(HttpLoggingInterceptor().apply {
if (BuildConfig.DEBUG) {
level = HttpLoggingInterceptor.Level.BODY
}
})
}.build()
}
single { GsonBuilder().create() }
single {
Retrofit.Builder()
.baseUrl(BASE_URL)
.addConverterFactory(GsonConverterFactory.create(get()))
.addCallAdapterFactory(CoroutineCallAdapterFactory())
.client(get())
.build()
}
}
val ApiModule = module {
single<GitHubAPI>(createdAtStart = false) { get<Retrofit>().create(GitHubAPI::class.java) }
}
반응형
'개발 > 안드로이드 개발' 카테고리의 다른 글
Android Navigation component 사용해보기 (0) | 2019.11.08 |
---|---|
Android Data Binding Library vs Kotlin Android Extensions (0) | 2019.10.31 |
(Databinding) databinding으로 2개의 문자열을 같이 사용하는 법 (0) | 2019.10.30 |
안드로이드 권한 요청 구현하고 예외 처리 하기 (0) | 2019.10.29 |
SearchView and Databinding with high order function (0) | 2019.10.28 |
Comments