From d22349d3767b882f24b4704a99adc21143b23081 Mon Sep 17 00:00:00 2001 From: Ian Smith Botsford Date: Fri, 25 Mar 2022 21:57:26 +0000 Subject: [PATCH] docs: update instructions for Android to remove XmlPull handling --- docs/targets.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/targets.md b/docs/targets.md index c7d216f6254..e90a98fc1bb 100644 --- a/docs/targets.md +++ b/docs/targets.md @@ -20,7 +20,6 @@ for the Android versions you choose to support in your application. Additional requirements: * Enable [core library desugaring](https://developer.android.com/studio/write/java8-support#library-desugaring) -* Exclude `xmlpull` module Example config fragments: @@ -38,11 +37,6 @@ android { } } -// get around a build issue with xmlpull as a dependency -configurations.all { - exclude(group = "xmlpull", module = "xmlpull") -} - dependencies { coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.1.5") }