From 8dd428cd184ca8e60cdab50c06f1c06810f20c4c Mon Sep 17 00:00:00 2001 From: Fabio Tacke Date: Fri, 1 May 2020 11:59:21 +0200 Subject: [PATCH] Update dependencies --- androidx3dh/build.gradle | 8 ++++---- app/build.gradle | 6 +++--- build.gradle | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/androidx3dh/build.gradle b/androidx3dh/build.gradle index e1fd570..2dbba77 100644 --- a/androidx3dh/build.gradle +++ b/androidx3dh/build.gradle @@ -7,10 +7,10 @@ android { buildToolsVersion "29.0.2" defaultConfig { - minSdkVersion 16 + minSdkVersion 19 targetSdkVersion 29 versionCode 1 - versionName "1.0" + versionName "1.0.2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles 'consumer-rules.pro' @@ -30,10 +30,10 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.core:core-ktx:1.2.0' - testImplementation 'junit:junit:4.12' + testImplementation 'junit:junit:4.13' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' - implementation "com.goterl.lazycode:lazysodium-android:4.1.0@aar" + implementation "com.goterl.lazycode:lazysodium-android:4.1.1@aar" implementation 'net.java.dev.jna:jna:5.5.0@aar' implementation 'com.github.TICESoftware:AndroidHKDF:1.0.0' } diff --git a/app/build.gradle b/app/build.gradle index 32486d2..6251be9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,7 +8,7 @@ android { defaultConfig { applicationId "com.ticeapp.androidx3dhapp" - minSdkVersion 16 + minSdkVersion 19 targetSdkVersion 29 versionCode 1 versionName "1.0" @@ -31,10 +31,10 @@ dependencies { implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.core:core-ktx:1.2.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' - testImplementation 'junit:junit:4.12' + testImplementation 'junit:junit:4.13' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' implementation project(":androidx3dh") - implementation "com.goterl.lazycode:lazysodium-android:4.1.0@aar" + implementation "com.goterl.lazycode:lazysodium-android:4.1.1@aar" implementation 'net.java.dev.jna:jna:5.5.0@aar' } diff --git a/build.gradle b/build.gradle index 6b97906..1ce8c79 100644 --- a/build.gradle +++ b/build.gradle @@ -1,14 +1,14 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.3.71' + ext.kotlin_version = '1.3.72' repositories { google() jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:3.6.1' + classpath 'com.android.tools.build:gradle:3.6.3' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'