diff options
-rw-r--r-- | app/build.gradle.kts | 10 | ||||
-rw-r--r-- | build.gradle.kts | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index e65cb285..1d0955c2 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -71,14 +71,14 @@ android { dependencies { implementation("androidx.appcompat:appcompat:1.1.0") implementation("androidx.cardview:cardview:1.0.0") - implementation("androidx.core:core-ktx:1.2.0-alpha04") - implementation("androidx.constraintlayout:constraintlayout:2.0.0-beta2") + implementation("androidx.core:core-ktx:1.2.0-beta01") + implementation("androidx.constraintlayout:constraintlayout:2.0.0-beta3") implementation("androidx.documentfile:documentfile:1.0.1") implementation("androidx.preference:preference:1.1.0") - implementation("androidx.recyclerview:recyclerview:1.1.0-beta04") + implementation("androidx.recyclerview:recyclerview:1.1.0-rc01") implementation("com.google.android.material:material:1.1.0-alpha10") implementation("androidx.annotation:annotation:1.1.0") - implementation("androidx.biometric:biometric:1.0.0-beta02") + implementation("androidx.biometric:biometric:1.0.0-rc02") implementation("org.sufficientlysecure:openpgp-api:12.0") implementation("org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r") { exclude(group = "org.apache.httpcomponents", module = "httpclient") @@ -92,7 +92,7 @@ dependencies { // Testing-only dependencies androidTestImplementation("junit:junit:4.13-beta-3") - androidTestImplementation("org.mockito:mockito-core:3.0.0") + androidTestImplementation("org.mockito:mockito-core:3.1.0") androidTestImplementation("androidx.test:runner:1.3.0-alpha02") androidTestImplementation("androidx.test:rules:1.3.0-alpha02") androidTestImplementation("androidx.test.ext:junit:1.1.2-alpha02") diff --git a/build.gradle.kts b/build.gradle.kts index 08e52b91..e22b4678 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -17,7 +17,7 @@ buildscript { } plugins { - id("com.github.ben-manes.versions") version "0.24.0" + id("com.github.ben-manes.versions") version "0.27.0" } allprojects { |