Hi All, I am trying to use kotlin2js in Android S...
# android
s
Hi All, I am trying to use kotlin2js in Android Studio. I currently have in my project’s build.gradle:
Copy code
apply plugin: 'kotlin2js'

compileKotlin2Js {
        kotlinOptions.outputFile = "${projectDir}/build/js/module.js"
        kotlinOptions.moduleKind = "umd"
        kotlinOptions.sourceMap = true
    }
as well as other configurations. When I compile my project, I do not see any .js files generated. Does anyone have any ideas as to why?
o
May be try #javascript ?
✔️ 1
s
Tried both!