diff --git a/app/build.gradle b/app/build.gradle index 82c7db6b0..3712761f2 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -99,15 +99,15 @@ android { } } -def room_version = "2.2.6" +def room_version = "2.3.0" dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.preference:preference-ktx:1.1.1' implementation 'androidx.cardview:cardview:1.0.0' - implementation 'androidx.constraintlayout:constraintlayout:2.0.4' - implementation 'androidx.viewpager2:viewpager2:1.1.0-alpha01' + implementation 'androidx.constraintlayout:constraintlayout:2.1.1' + implementation 'androidx.viewpager2:viewpager2:1.1.0-beta01' implementation 'androidx.documentfile:documentfile:1.0.1' implementation 'androidx.biometric:biometric:1.1.0' // Lifecycle - LiveData - ViewModel - Coroutines @@ -121,11 +121,11 @@ dependencies { // Autofill implementation "androidx.autofill:autofill:1.1.0" // Time - implementation 'joda-time:joda-time:2.10.6' + implementation 'joda-time:joda-time:2.10.13' // Color implementation 'com.github.Kunzisoft:AndroidClearChroma:2.4' // Education - implementation 'com.getkeepsafe.taptargetview:taptargetview:1.13.0' + implementation 'com.getkeepsafe.taptargetview:taptargetview:1.13.2' // Apache Commons implementation 'commons-io:commons-io:2.8.0' implementation 'commons-codec:commons-codec:1.15' @@ -136,6 +136,6 @@ dependencies { implementation project(path: ':icon-pack-material') // Tests - androidTestImplementation 'androidx.test:runner:1.3.0' - androidTestImplementation 'androidx.test:rules:1.3.0' + androidTestImplementation 'androidx.test:runner:1.4.0' + androidTestImplementation 'androidx.test:rules:1.4.0' } diff --git a/build.gradle b/build.gradle index 1253c9375..eaec51b79 100644 --- a/build.gradle +++ b/build.gradle @@ -1,19 +1,19 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.4.31' + ext.kotlin_version = '1.4.32' repositories { - jcenter() + mavenCentral() google() } dependencies { - classpath 'com.android.tools.build:gradle:7.0.1' + classpath 'com.android.tools.build:gradle:7.0.3' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } allprojects { repositories { - jcenter() + mavenCentral() google() maven { url "https://jitpack.io" } }