Added Fetch library in our project for downloading the ZIM files.

This commit is contained in:
MohitMaliFtechiz 2024-12-19 11:39:55 +05:30
parent 4b8fe6df69
commit e3396901c6
3 changed files with 5 additions and 0 deletions

View File

@ -357,4 +357,6 @@ object Libs {
* https://github.com/slackhq/keeper
*/
const val keeper = "com.slack.keeper:keeper:" + Versions.keeper
const val fetch: String = "com.github.tonyofrancis.Fetch:fetch2:" + Versions.fetch
}

View File

@ -109,6 +109,8 @@ object Versions {
const val zxing = "3.5.3"
const val keeper = "0.16.1"
const val fetch: String = "3.3.0"
}
/**

View File

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