From 41e8059585604eee71547c9df641533c4cadaa0e Mon Sep 17 00:00:00 2001 From: Elijah Whang <59347000+ewhang5@users.noreply.github.com> Date: Wed, 10 Jul 2024 11:41:10 -0500 Subject: [PATCH] actions: smoother build (fixes #3780) (fixes #3778) (#3792) Co-authored-by: dogi --- app/build.gradle | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 6e53b5b014..e29430825b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,8 +9,8 @@ android { applicationId "org.ole.planet.myplanet" minSdkVersion 21 targetSdkVersion 34 - versionCode 1665 - versionName "0.16.65" + versionCode 1666 + versionName "0.16.66" ndkVersion '21.3.6528147' testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true @@ -92,7 +92,9 @@ repositories { dependencies { testImplementation 'junit:junit:4.13.2' - implementation project(':library') + implementation(project(':library')) { + exclude group: 'commons-logging', module: 'commons-logging' + } implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.legacy:legacy-support-v4:1.0.0' @@ -125,7 +127,9 @@ dependencies { implementation 'com.nex3z:toggle-button-group:1.2.3' implementation 'com.sa90.materialarcmenu:library:2.0.0' implementation 'com.caverock:androidsvg-aar:1.4' - implementation 'com.opencsv:opencsv:5.9' + implementation('com.opencsv:opencsv:5.9') { + exclude group: 'commons-logging', module: 'commons-logging' + } implementation 'de.hdodenhof:circleimageview:3.1.0' implementation 'de.rtner:PBKDF2:1.1.4'