add koin, retrofit and setup retrofit boilerplate

This commit is contained in:
Owen LeJeune
2022-02-09 21:12:28 -05:00
parent be7eca362a
commit b5db7422d0
12 changed files with 152 additions and 3 deletions

View File

@@ -22,6 +22,8 @@ android {
vectorDrawables {
useSupportLibrary true
}
buildConfigField("String", "TMDB_ApiKey", TMDB_ApiKey)
}
buildTypes {
@@ -53,14 +55,25 @@ android {
dependencies {
implementation Dependencies.AndroidX.ktxCore
implementation Dependencies.Compose.ui
implementation Dependencies.Compose.material3
implementation Dependencies.Compose.material
implementation Dependencies.Compose.uiToolingPreview
implementation Dependencies.Lifecycle.runtime
implementation Dependencies.Compose.activity
implementation Dependencies.Compose.accompanistSystemUi
implementation Dependencies.Compose.navigation
implementation Dependencies.Lifecycle.runtime
implementation Dependencies.Network.retrofit
implementation Dependencies.Network.retrofitGson
implementation Dependencies.Network.gson
implementation Dependencies.Network.stetho
implementation Dependencies.Network.stethoOkHttp
implementation Dependencies.DI.koin
testImplementation Dependencies.Testing.junit
androidTestImplementation Dependencies.Testing.androidXJunit
androidTestImplementation Dependencies.Testing.espressoCore