Skip to content

Commit 7abaff9

Browse files
committed
Bump some dependencies
1 parent 9b6d978 commit 7abaff9

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
biometricVersion="1.0.1"
1515

1616
// Kotlin
17-
kotlinVersion = "1.5.21"
17+
kotlinVersion = "1.5.31"
1818
coroutinesVersion = "1.5.1"
1919

2020
// Koin
@@ -46,9 +46,9 @@ buildscript {
4646
}
4747

4848
dependencies {
49-
classpath 'com.android.tools.build:gradle:4.2.2'
49+
classpath 'com.android.tools.build:gradle:7.0.3'
5050
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
51-
classpath "org.jlleitschuh.gradle:ktlint-gradle:10.1.0"
51+
classpath "org.jlleitschuh.gradle:ktlint-gradle:10.2.0"
5252
}
5353
}
5454

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip

owncloudApp/build.gradle

+3-4
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,14 @@ dependencies {
1313

1414
// Dependencies for app building
1515
implementation "androidx.legacy:legacy-support-v4:$androidX"
16-
implementation "androidx.annotation:annotation:1.2.0"
16+
implementation "androidx.annotation:annotation:1.3.0"
1717
implementation 'com.google.android.material:material:1.4.0'
1818
implementation 'com.jakewharton:disklrucache:2.0.2'
1919
implementation 'com.google.android.exoplayer:exoplayer:2.15.0'
2020
implementation 'com.github.aritraroy.PatternLockView:patternlockview:a90b0d4bf0'
2121
implementation "androidx.appcompat:appcompat:$appCompat"
2222
implementation 'com.getbase:floatingactionbutton:1.10.1'
23-
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
24-
implementation "androidx.browser:browser:1.3.0"
23+
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
2524
implementation "androidx.sqlite:sqlite-ktx:$sqliteVersion"
2625
implementation "androidx.biometric:biometric:$biometricVersion"
2726

@@ -81,7 +80,7 @@ dependencies {
8180
androidTestImplementation "androidx.test.espresso:espresso-web:$espressoTestVersion"
8281
androidTestImplementation "androidx.test.uiautomator:uiautomator:$uiAutomatorTestVersion"
8382
androidTestImplementation "androidx.annotation:annotation:$annotationTestVersion"
84-
androidTestImplementation "androidx.arch.core:core-testing:$archLifecycleVersion"
83+
androidTestImplementation "androidx.arch.core:core-testing:2.1.0"
8584
androidTestImplementation("io.mockk:mockk-android:$mockkVersion") {
8685
exclude module: 'objenesis'
8786
}

owncloudApp/src/main/java/com/owncloud/android/files/services/FileUploader.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ public void uploadFile(String uploadKey) {
886886
mCurrentUpload.getRemotePath(),
887887
mCurrentAccount.name
888888
);
889-
Timber.v(stringToLog);
889+
Timber.v("%s", stringToLog);
890890
}
891891
} else if (uploadResult.getCode() == ResultCode.DELAYED_FOR_WIFI) {
892892
// if failed due to the upload is delayed for wifi, schedule automatic retry as well
@@ -903,7 +903,7 @@ public void uploadFile(String uploadKey) {
903903
mCurrentUpload.getRemotePath(),
904904
mCurrentAccount.name
905905
);
906-
Timber.v(stringToLog);
906+
Timber.v("%s", stringToLog);
907907
}
908908

909909
if (uploadResult != null) {

0 commit comments

Comments
 (0)