Last active
September 20, 2022 13:18
-
-
Save RageshAntony/1c84bbc916b4b1bcb7f4b07f26aacb87 to your computer and use it in GitHub Desktop.
Adding JS target to KMM project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Caused by: org.gradle.api.UnknownDomainObjectException: Extension with name 'kotlinNodeJs' does not exist. | |
| Currently registered extension names: [ext, _internalAndroidGradlePluginDependencyCheckerRegistered] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| buildscript { | |
| repositories { | |
| gradlePluginPortal() | |
| google() | |
| mavenCentral() | |
| } | |
| dependencies { | |
| classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10") | |
| classpath("com.android.tools.build:gradle:7.2.1") | |
| } | |
| } | |
| allprojects { | |
| repositories { | |
| google() | |
| mavenCentral() | |
| } | |
| } | |
| tasks.register("clean", Delete::class) { | |
| delete(rootProject.buildDir) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment