You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It utlilizes browserDevelopmentWebpack Gradle task for building the static pages for the webapp. Unfortunately the development builds are extremely bloated. Attempts to use the production tasks for generating web distributions failed (unable to call Kotlin from JavaScript).
Testing with the js(IR) compiler worked (for calling Kotlin from JavaScript) but did not work with the current version of Okio (which is not compiled with IR compiler).
In the future we should either:
Check if js(LEGACY) has fixes that properly allow calling Kotlin from JavaScript
Switch to js(IR) when Okio supports it (preferred)
#42 integrated a CoAP decoder webapp that is deployed to GitHub Pages.
It utlilizes
browserDevelopmentWebpack
Gradle task for building the static pages for the webapp. Unfortunately the development builds are extremely bloated. Attempts to use the production tasks for generating web distributions failed (unable to call Kotlin from JavaScript).Testing with the
js(IR)
compiler worked (for calling Kotlin from JavaScript) but did not work with the current version of Okio (which is not compiled with IR compiler).In the future we should either:
js(LEGACY)
has fixes that properly allow calling Kotlin from JavaScriptjs(IR)
when Okio supports it (preferred)More details can be found at https://stackoverflow.com/a/65680291/196486.
The text was updated successfully, but these errors were encountered: