refactor(di): migrate OkHttp module to core

This commit is contained in:
Harsh Shandilya 2022-11-13 15:50:10 +05:30
parent b8965902ba
commit 9d41b7e819
No known key found for this signature in database
5 changed files with 13 additions and 15 deletions

View file

@ -13,10 +13,15 @@ plugins {
alias(libs.plugins.anvil)
}
anvil { generateDaggerFactories.set(true) }
android { namespace = "dev.msfjarvis.claw.core" }
dependencies {
api(libs.okhttp.loggingInterceptor)
implementation(projects.diScopes)
implementation(libs.dagger)
implementation(libs.javax.inject)
implementation(libs.napier)
implementation(libs.okhttp.core)
}