From 0185d98f38b9d70019d0946133b65aeed13678da Mon Sep 17 00:00:00 2001 From: Paris Tsiogas Date: Tue, 12 Sep 2023 12:20:02 +0300 Subject: [PATCH] build: update version to 1.4.0 --- README.md | 2 +- securebox/build.gradle | 19 ++++++++----------- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index ca461a7..88b9876 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ maven { url 'https://jitpack.io' } dependencies { -implementation 'com.github.ptsiogas4:secureBoxHelper:1.3.1' +implementation 'com.github.ptsiogas4:secureBoxHelper:1.4.0' } diff --git a/securebox/build.gradle b/securebox/build.gradle index 9db098d..334eefa 100644 --- a/securebox/build.gradle +++ b/securebox/build.gradle @@ -4,7 +4,7 @@ apply plugin: 'kotlin-android' apply plugin: 'maven-publish' ext { - libraryVersion = "1.3.1" + libraryVersion = "1.4.0" libraryGroupId = "com.github.ptsiogas4" libraryArtifactId = "secureBoxHelper" } @@ -54,21 +54,18 @@ android { kotlinOptions { jvmTarget = configJavaVersion } - - buildToolsVersion = configBuildToolsVersion - } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'androidx.test:monitor:1.4.0' - implementation 'androidx.test:core-ktx:1.4.0' - implementation 'androidx.test.ext:junit-ktx:1.1.3' + implementation 'androidx.test:monitor:1.6.1' + implementation 'androidx.test:core-ktx:1.5.0' + implementation 'androidx.test.ext:junit-ktx:1.1.5' baseGroup dependencies - testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.1' - androidTestImplementation "androidx.test:runner:1.4.0" - testImplementation 'org.mockito:mockito-core:3.11.0' - androidTestImplementation 'org.mockito:mockito-android:2.6.3' + testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3' + androidTestImplementation "androidx.test:runner:1.5.2" + testImplementation 'org.mockito:mockito-core:5.4.0' + androidTestImplementation 'org.mockito:mockito-android:5.4.0' } repositories { mavenCentral()