Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bitfireAT/ical4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSunik Kupfer <kupfer@bitfire.at>2022-07-15 22:40:42 +0300
committerGitHub <noreply@github.com>2022-07-15 22:40:42 +0300
commit41171b57fdc5f045b17d09df85853a6cc13ef4fd (patch)
treee51352f548419912469a4a731f286539404e7da2
parent22dfb270ee783290a635ad4e3594fd8c9ad3d5ec (diff)
Update to ical4j 3.2.4 (closes bitfireAT/ical4android#47) (#48)
* Update to ical4j 3.2.4 (closes bitfireAT/ical4android#47) * exclude commons-logging, due to DuplicatePlatformClasses issue
-rw-r--r--build.gradle6
1 files changed, 2 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index 5feb4ab..a45d059 100644
--- a/build.gradle
+++ b/build.gradle
@@ -7,7 +7,7 @@ buildscript {
ext.versions = [
kotlin: '1.7.0',
dokka: '1.5.0',
- ical4j: '3.2.0', // tests fail with >= 3.2.1: https://github.com/ical4j/ical4j/issues/350#issuecomment-1177290922 – update as soon as this is fixed
+ ical4j: '3.2.4',
// latest Apache Commons versions that don't require Java 8 (Android 7)
commonsIO: '2.6'
]
@@ -84,7 +84,7 @@ dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.6'
api("org.mnode.ical4j:ical4j:${versions.ical4j}") {
- exclude module: 'javax.mail'
+ exclude group: 'commons-logging'
exclude group: 'org.codehaus.groovy', module: 'groovy'
exclude group: 'org.codehaus.groovy', module: 'groovy-dateutil'
}
@@ -94,8 +94,6 @@ dependencies {
// noinspection GradleDependency
api("org.apache.commons:commons-lang3:3.8.1") { force = true }
- // ical4j requires JavaMail API (e.g. for EMAIL parameter)
- implementation 'com.sun.mail:android-mail:1.6.7'
// noinspection GradleDependency
implementation "commons-io:commons-io:${versions.commonsIO}"