From 0a6212dde3cb973c197934700f2d209e38b6d92c Mon Sep 17 00:00:00 2001 From: M66B Date: Sat, 28 Oct 2023 09:21:38 +0200 Subject: [PATCH] Skip linking FasterXML/jackson --- app/build.gradle | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 0a9769e4af..ad77e6897c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -667,12 +667,16 @@ dependencies { // https://mvnrepository.com/artifact/net.sf.biweekly/biweekly //implementation("net.sf.biweekly:biweekly:$biweekly_version") { // exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core' + // exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind' //} - implementation "com.fasterxml.jackson.core:jackson-core:2.14.2" - implementation "com.fasterxml.jackson.core:jackson-databind:2.14.2" + api "com.fasterxml.jackson.core:jackson-core:2.14.2" + api "com.fasterxml.jackson.core:jackson-databind:2.14.2" // https://github.com/mangstadt/ez-vcard - implementation "com.googlecode.ez-vcard:ez-vcard:$vcard_version" + implementation("com.googlecode.ez-vcard:ez-vcard:$vcard_version") { + exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core' + exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind' + } // https://github.com/KeepSafe/ReLinker // https://mvnrepository.com/artifact/com.getkeepsafe.relinker/relinker