diff options
Diffstat (limited to 'merchant-lib')
-rw-r--r-- | merchant-lib/build.gradle | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/merchant-lib/build.gradle b/merchant-lib/build.gradle index 87bafd3..a173cce 100644 --- a/merchant-lib/build.gradle +++ b/merchant-lib/build.gradle @@ -17,18 +17,17 @@ plugins { id 'com.android.library' id 'kotlin-android' - id 'kotlin-android-extensions' id 'kotlinx-serialization' } android { - compileSdkVersion 29 + compileSdkVersion 30 //noinspection GradleDependency buildToolsVersion "$build_tools_version" defaultConfig { minSdkVersion 21 - targetSdkVersion 29 + targetSdkVersion 30 versionCode 1 versionName "0.1" @@ -55,7 +54,7 @@ dependencies { api "io.ktor:ktor-client-okhttp:$ktor_version" api "io.ktor:ktor-client-serialization-jvm:$ktor_version" - testImplementation 'junit:junit:4.13' + testImplementation 'junit:junit:4.13.1' testImplementation "io.ktor:ktor-client-mock-jvm:$ktor_version" testImplementation "io.ktor:ktor-client-logging-jvm:$ktor_version" testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.9' |