From a637efd3d3c47a1c340323127e0b35c783b51ab9 Mon Sep 17 00:00:00 2001 From: Hai Zhang Date: Sun, 3 Mar 2024 17:32:54 -0800 Subject: [PATCH] Fix: Fix release build for dav4jvm by excluding org.ogce:xpp3 --- app/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 094a6232f..665826f6e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -104,7 +104,9 @@ repositories { } } dependencies { - implementation 'com.github.zhanghai:dav4jvm:c317607' + implementation('com.github.zhanghai:dav4jvm:c317607') { + exclude group: 'org.ogce', module: 'xpp3' + } implementation 'com.github.chrisbanes:PhotoView:2.3.0' implementation 'com.github.topjohnwu.libsu:service:5.2.2' }