icerockdev / moko-widgets

Multiplatform UI DSL with screen management in common code for mobile (android & ios) Kotlin Multiplatform development
https://moko.icerock.dev
Apache License 2.0
387 stars 32 forks source link

Fix Gradle build on newer JDKs #246

Closed stevesoltys closed 4 years ago

stevesoltys commented 4 years ago

com.sun.xml.internal.messaging.saaj.util.ByteOutputStream is no longer available in newer JDKs, so the Gradle build fails for them.

Switching to java.io.ByteArrayOutputStream resolves the issue.

Alex009 commented 4 years ago

hi! thanks for fix!