Removed the excluding of dependency from fetch library as now our project has support for Android 15.

This commit is contained in:
MohitMaliFtechiz 2024-12-26 17:50:51 +05:30 committed by Kelson
parent 4157903682
commit e35135fc91
2 changed files with 1 additions and 4 deletions

View File

@ -232,6 +232,7 @@ class AllProjectConfigurer {
implementation(Libs.roomRxjava2)
kapt(Libs.roomCompiler)
implementation(Libs.tracing)
implementation(Libs.fetch)
implementation(Libs.fetchOkhttp)
implementation(Libs.androidx_activity)
}

View File

@ -63,8 +63,4 @@ dependencies {
implementation(Libs.kotlinx_coroutines_android)
implementation(Libs.kotlinx_coroutines_rx3)
implementation(Libs.zxing)
api(Libs.fetch) {
// Todo: Will remove this when we add support for Android 15
exclude("androidx.core", "core-ktx")
}
}