Browse Source

Include jdk.crypto.ec by default (#905)

Without this module most of https
is not going to work (see https://github.com/JetBrains/compose-jb/issues/269 or https://github.com/JetBrains/compose-jb/issues/429)

The inclusion of this module increases a size of
a prepackaged app by ~440 kb
and of a packaged dmg by ~167 kb
pull/907/head
Alexey Tsvetkov 3 years ago committed by GitHub
parent
commit
b73b09dffc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/desktop/application/dsl/NativeDistributions.kt

2
gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/desktop/application/dsl/NativeDistributions.kt

@ -13,7 +13,7 @@ import java.util.*
import javax.inject.Inject
internal val DEFAULT_RUNTIME_MODULES = arrayOf(
"java.base", "java.desktop", "java.logging"
"java.base", "java.desktop", "java.logging", "jdk.crypto.ec"
)
open class NativeDistributions @Inject constructor(

Loading…
Cancel
Save