Skip to content

Commit

Permalink
build: update all dependencies, add buildToolsVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrykMis committed Oct 25, 2022
1 parent 8e7554a commit fc7b491
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ android {
namespace = "com.chiller3.bcr"

compileSdk = 33
buildToolsVersion = "33.0.0"

defaultConfig {
applicationId = "com.chiller3.bcr"
Expand Down Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@

# Disable obfuscation completely for BCR. As an open source project,
# shrinking is the only goal of minification.
-dontobfuscate
-dontobfuscate
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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<Delete>("clean") {
Expand Down

0 comments on commit fc7b491

Please sign in to comment.