From fc7b491b88e4984a5b1f99044ede8ba53dd8377b Mon Sep 17 00:00:00 2001 From: PatrickMis <24607131+PatrickMis@users.noreply.github.com> Date: Tue, 25 Oct 2022 11:34:47 +0200 Subject: [PATCH] build: update all dependencies, add buildToolsVersion --- app/build.gradle.kts | 7 ++++--- app/proguard-rules.pro | 2 +- build.gradle.kts | 6 +++--- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 842c3717c..0329004e6 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -97,6 +97,7 @@ android { namespace = "com.chiller3.bcr" compileSdk = 33 + buildToolsVersion = "33.0.0" defaultConfig { applicationId = "com.chiller3.bcr" @@ -141,13 +142,13 @@ android { } dependencies { - implementation("androidx.activity:activity-ktx:1.6.0") + implementation("androidx.activity:activity-ktx:1.6.1") implementation("androidx.appcompat:appcompat:1.5.1") implementation("androidx.core:core-ktx:1.9.0") implementation("androidx.documentfile:documentfile:1.0.1") - implementation("androidx.fragment:fragment-ktx:1.5.3") + implementation("androidx.fragment:fragment-ktx:1.5.4") implementation("androidx.preference:preference-ktx:1.2.0") - implementation("com.google.android.material:material:1.6.1") + implementation("com.google.android.material:material:1.7.0") testImplementation("junit:junit:4.13.2") androidTestImplementation("androidx.test.ext:junit:1.1.3") androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0") diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index bb07757de..a53f59c5a 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -22,4 +22,4 @@ # Disable obfuscation completely for BCR. As an open source project, # shrinking is the only goal of minification. --dontobfuscate \ No newline at end of file +-dontobfuscate diff --git a/build.gradle.kts b/build.gradle.kts index 2b0e58921..9c7eee11b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,8 +1,8 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id("com.android.application") version "7.2.2" apply false - id("com.android.library") version "7.2.2" apply false - id("org.jetbrains.kotlin.android") version "1.7.10" apply false + id("com.android.application") version "7.3.1" apply false + id("com.android.library") version "7.3.1" apply false + id("org.jetbrains.kotlin.android") version "1.7.20" apply false } task("clean") {