Added manifest file for the dwds module

This commit is contained in:
Gouri Panda 2023-10-18 03:49:36 +05:30
parent 725a5ccd0b
commit f49e12d9d7
3 changed files with 3 additions and 1 deletions

View File

@ -334,6 +334,7 @@ object Libs {
* https://developer.android.com/jetpack/androidx * https://developer.android.com/jetpack/androidx
*/ */
const val webkit: String = "androidx.webkit:webkit:" + Versions.webkit const val webkit: String = "androidx.webkit:webkit:" + Versions.webkit
const val playcore: String = "com.google.android.play:core:1.10.0"
/** /**
* https://developer.android.com/testing * https://developer.android.com/testing

View File

@ -21,7 +21,7 @@ apply(plugin = "com.jakewharton.butterknife")
ext { ext {
set("versionMajor", 3) set("versionMajor", 3)
set("versionMinor", 7) set("versionMinor", 7)
set("versionPatch", 1) set("versionPatch", 2)
} }
/* /*
@ -84,6 +84,7 @@ dependencies {
implementation(Libs.objectbox_kotlin) implementation(Libs.objectbox_kotlin)
implementation(Libs.objectbox_rxjava) implementation(Libs.objectbox_rxjava)
implementation(Libs.webkit) implementation(Libs.webkit)
implementation(Libs.playcore)
testImplementation(Libs.kotlinx_coroutines_test) testImplementation(Libs.kotlinx_coroutines_test)
implementation(Libs.kotlinx_coroutines_android) implementation(Libs.kotlinx_coroutines_android)
} }