We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 363b34e commit a181b8aCopy full SHA for a181b8a
build.gradle.kts
@@ -108,6 +108,15 @@ kotlin {
108
pom { name = "${project.name}-wasm-js" }
109
}
110
111
+ @OptIn(ExperimentalWasmDsl::class)
112
+ wasmWasi {
113
+ nodejs()
114
+
115
+ mavenPublication {
116
+ groupId = group as String
117
+ pom { name = "${project.name}-wasm-wasi" }
118
+ }
119
120
121
mingwX64()
122
linuxX64()
@@ -125,6 +134,10 @@ kotlin {
125
134
tvosSimulatorArm64()
126
135
macosX64()
127
136
macosArm64()
137
+ androidNativeArm32()
138
+ androidNativeArm64()
139
+ androidNativeX86()
140
+ androidNativeX64()
128
141
129
142
@OptIn(ExperimentalKotlinGradlePluginApi::class)
130
143
applyDefaultHierarchyTemplate {
0 commit comments