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'