From f600bc34a5fdce1ff344e3dd07de52debf28fe67 Mon Sep 17 00:00:00 2001 From: Jonathan Klee Date: Thu, 8 Jun 2023 09:08:27 +0200 Subject: [PATCH 1/2] Update all dependencies except NextCloud lib --- app/build.gradle | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 374ad1c7..992a2b8c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -93,32 +93,32 @@ dependencies { implementation 'com.github.nextcloud:android-library:2.13.0' implementation "commons-httpclient:commons-httpclient:3.1@jar" implementation fileTree(include: ['*.jar'], dir: 'libs') - api 'androidx.annotation:annotation:1.3.0' - implementation 'androidx.core:core:1.7.0' - implementation 'androidx.appcompat:appcompat:1.4.1' - implementation "androidx.constraintlayout:constraintlayout:2.1.3" - implementation 'com.google.android.material:material:1.6.0' - implementation 'com.github.bumptech.glide:glide:4.14.2' - implementation 'com.github.bumptech.glide:annotations:4.14.2' - implementation 'androidx.core:core-ktx:+' - annotationProcessor 'com.github.bumptech.glide:compiler:4.14.2' - implementation "androidx.work:work-runtime:2.7.1" - implementation 'androidx.test:core:1.4.0' + api 'androidx.annotation:annotation:1.6.0' + implementation 'androidx.core:core:1.10.1' + implementation 'androidx.appcompat:appcompat:1.6.1' + implementation "androidx.constraintlayout:constraintlayout:2.1.4" + implementation 'com.google.android.material:material:1.9.0' + implementation 'com.github.bumptech.glide:glide:4.15.1' + implementation 'com.github.bumptech.glide:annotations:4.15.1' + implementation 'androidx.core:core-ktx:1.10.1' + annotationProcessor 'com.github.bumptech.glide:compiler:4.15.1' + implementation "androidx.work:work-runtime:2.8.1" + implementation 'androidx.test:core:1.5.0' implementation 'com.jakewharton.timber:timber:5.0.1' implementation 'foundation.e:elib:0.0.1-alpha11' - implementation 'foundation.e.lib:telemetry:0.0.7-alpha' + implementation 'foundation.e.lib:telemetry:0.0.8-alpha' - androidTestImplementation 'androidx.test:runner:1.4.0' - androidTestImplementation 'androidx.test:rules:1.4.0' - androidTestImplementation 'androidx.annotation:annotation:1.3.0' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' + androidTestImplementation 'androidx.test:runner:1.5.2' + androidTestImplementation 'androidx.test:rules:1.5.0' + androidTestImplementation 'androidx.annotation:annotation:1.6.0' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' androidTestImplementation 'junit:junit:4.13.2' - testImplementation 'androidx.test:runner:1.4.0' - testImplementation 'androidx.test:rules:1.4.0' + testImplementation 'androidx.test:runner:1.5.2' + testImplementation 'androidx.test:rules:1.5.0' testImplementation 'junit:junit:4.13.2' - testImplementation 'org.robolectric:robolectric:4.4' - testImplementation 'org.mockito:mockito-core:3.4.0' - testImplementation 'androidx.work:work-testing:2.7.1' + testImplementation 'org.robolectric:robolectric:4.7.3' + testImplementation 'org.mockito:mockito-core:5.0.0' + testImplementation 'androidx.work:work-testing:2.8.1' } \ No newline at end of file -- GitLab From fa4216272154d029d9c0d507f0fdc754fb1d1aa6 Mon Sep 17 00:00:00 2001 From: Jonathan Klee Date: Thu, 8 Jun 2023 09:11:05 +0200 Subject: [PATCH 2/2] Update compileSdk to 34 --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 992a2b8c..71762351 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -36,7 +36,7 @@ def getSentryDsn = { -> } android { - compileSdk 33 + compileSdk 34 defaultConfig { applicationId "foundation.e.drive" minSdk 26 -- GitLab