From 3fb2e5b134de399a86b7724874c85d51749eeffa Mon Sep 17 00:00:00 2001 From: Ian Botsford <83236726+ianbotsf@users.noreply.github.com> Date: Mon, 14 Mar 2022 11:30:51 -0700 Subject: [PATCH 1/2] chore: enable XML whitespace tests in protocol tests (#548) --- .../codegen/protocols/core/AwsHttpBindingProtocolGenerator.kt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/codegen/smithy-aws-kotlin-codegen/src/main/kotlin/aws/sdk/kotlin/codegen/protocols/core/AwsHttpBindingProtocolGenerator.kt b/codegen/smithy-aws-kotlin-codegen/src/main/kotlin/aws/sdk/kotlin/codegen/protocols/core/AwsHttpBindingProtocolGenerator.kt index 472a3361ae1..0ea5ed3c4bd 100644 --- a/codegen/smithy-aws-kotlin-codegen/src/main/kotlin/aws/sdk/kotlin/codegen/protocols/core/AwsHttpBindingProtocolGenerator.kt +++ b/codegen/smithy-aws-kotlin-codegen/src/main/kotlin/aws/sdk/kotlin/codegen/protocols/core/AwsHttpBindingProtocolGenerator.kt @@ -80,10 +80,6 @@ abstract class AwsHttpBindingProtocolGenerator : HttpBindingProtocolGenerator() // awsJson1.1 // FIXME - document type not fully supported yet, see https://github.com/awslabs/smithy-kotlin/issues/123 "PutAndGetInlineDocumentsInput", - - // smithy-kotlin#519 - "SimpleScalarPropertiesWithWhiteSpace", - "SimpleScalarPropertiesPureWhiteSpace", ), TestContainmentMode.EXCLUDE_TESTS ) From d83802255ac08a30eccc3968d8f7a74cbddeda2c Mon Sep 17 00:00:00 2001 From: Ian Botsford <83236726+ianbotsf@users.noreply.github.com> Date: Mon, 28 Mar 2022 15:54:40 -0700 Subject: [PATCH 2/2] docs: update instructions for Android to remove XmlPull handling (#561) --- 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") }