Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: update all dependencies, add buildToolsVersion #155

Merged
merged 2 commits into from
Oct 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
1 change: 1 addition & 0 deletions app/src/main/res/values-tr/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<string name="output_dir_bottom_sheet_file_retention">Dosyaları sakla</string>
<string name="retention_keep_all">Hepsini sakla</string>
<plurals name="retention_days">
<item quantity="one">%d gün sakla</item>
<item quantity="other">%d gün sakla</item>
</plurals>

Expand Down
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