11

我正在使用 Kotlin 多平台(JVM 和 JS),它在 IDEA 中创建了三个项目demodemo-jsdemo-jvm.

我想将通用代码拆分为更多的子项目/子模块。假设我添加commonmod;我如何使它编译?

对于 , 现在的错误gradle run -p demo-jvm是:

demo/demo-js/src/main/kotlin/demo/commonmod/example.kt: (3, 12): Actual function 'getPlatform' has no corresponding expected declaration

但我认为我这样做从根本上是错误的,因为我不知道什么应该取决于什么(尽管我尝试了很多迭代)。如果我解决了这个错误,我会得到其他错误,然后再得到其他错误,直到我回到这个错误。


作为一个最小但仍然很大的例子,我有:

演示/settings.gradle

rootProject.name = 'demo'

include 'demo-jvm', 'demo-js', 'commonmod'

演示/build.gradle

buildscript { ... }

apply plugin: 'kotlin-platform-common'

repositories {
    mavenCentral()
}

dependencies {
    compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version"
    testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlin_version"
    testCompile "org.jetbrains.kotlin:kotlin-test-common:$kotlin_version"
    compile project(':commonmod')
}

演示/演示-jvm/settings.gradle

rootProject.name = 'demo'

演示/演示-jvm/build.gradle

buildscript { ... }

apply plugin: 'kotlin-platform-jvm'
apply plugin: 'application'

repositories {
    mavenCentral()
}

mainClassName = "demo.MainKt"

dependencies {
    compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    expectedBy project(":")
    testCompile "junit:junit:4.12"
    testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
    testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
}

演示/演示-js/settings.gradle

rootProject.name = 'demo'

演示/演示-js/build.gradle

buildscript { ... }

apply plugin: 'kotlin-platform-js'

repositories {
    mavenCentral()
}

dependencies {
    compile "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlin_version"
    expectedBy project(":")
    testCompile "org.jetbrains.kotlin:kotlin-test-js:$kotlin_version"
}

演示/commonmod/settings.gradle

rootProject.name = 'demo'

include 'demo-jvm', 'demo-js'

演示/commonmod/build.gradle

buildscript { ... }

apply plugin: 'kotlin-platform-common'

repositories {
    mavenCentral()
}

dependencies {
    compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version"
    testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlin_version"
    testCompile "org.jetbrains.kotlin:kotlin-test-common:$kotlin_version"
    compile project(':demo-js')
    compile project(':demo-jvm')
}
4

3 回答 3

14

这花了很多时间,所以我希望这对某人有用!

Github上有一个功能示例:kotlin_multiplatform_gradle_demo

有几个来源提供了帮助,但很多都是反复试验,所以如果有什么不好的做法,请告诉我!


对于最小的例子,结构是这样的:

├── alpha
│   ├── alpha-js
│   │   └── build.gradle
│   ├── alpha-jvm
│   │   └── build.gradle
│   ├── build.gradle
│   └── src
│       └── main
│           ├── kotlin
│           │   └── demo
│           │       └── alpha
│           │           └── main.kt
├── beta
│   ├── beta-js
│   │   ├── build.gradle
│   │   └── src
│   │       └── main
│   │           └── kotlin
│   │               └── demo
│   │                   └── beta
│   │                       └── platform.kt
│   ├── beta-jvm
│   │   ├── build.gradle
│   │   └── src
│   │       └── main
│   │           └── kotlin
│   │               └── demo
│   │                   └── beta
│   │                       └── platform.kt
│   ├── build.gradle
│   └── src
│       └── main
│           └── kotlin
│               └── demo
│                   └── beta
│                       └── platform.kt
├── build.gradle
└── settings.gradle

通用模块(alphabeta)需要每个平台的平台模块,至少有一个`build.gradle`。

settings.gradle文件导入所有模块,包括平台模块。

依赖关系,例如从 alpha 到 beta,在公共 alpha 模块和所有 alpha 平台模块中声明。


我学到的一些模式:

  • 每个“普通”(通用)模块都有一个用于每个平台的平台模块。
  • 对于 common 模块alpha,必须调用 javascript 平台模块alpha-js(类似 for -jvm)。
  • 如果没有特定于平台的代码,则此模块可以只是目录中的 gradle 文件。
  • 平台模块可以方便地放置在公共模块目录(so alpha:alpha-js)中。
  • 通用模块不应指代平台模块;平台模块具有依赖关系expectedBy project(":the_common_module")
  • 如果模块alpha依赖于beta,那么

    • alpha一定有dependencies { compile project(":beta") }
    • alpha-js必须有dependencies { compile project(":beta:beta-js") }(除了expectedBy
    • alpha-jvm必须有dependencies { compile project(":beta:beta-jvm") }(除了expectedBy)等
  • 只有顶层模块有settings.gradle,其中包括所有子模块(包括平台的)。

  • 确保名称正确,因为不正确的名称不会导致错误,它们只是默默地失败。(这看起来很荒谬,但我想这是有原因的。)
  • 不要将所有输出放到一个共享的构建目录中——这会导致一些奇怪的非确定性错误。

我以前这里有完整的配置文件,但最好只检查Github上的代码,因为它真的很长。

于 2018-01-11T19:53:59.703 回答
0

对于来自 Google 搜索的任何人:

“实际函数/类/伴随对象/等没有对应的预期声明”

尝试清理和重建项目,对我来说,这揭示了许多其他阻止构建的错误。

于 2018-10-09T04:03:30.727 回答
0

子模块必须在 sourceSets 的依赖范围内声明。如果子模块定义在公共源集中,则不需要在特定平台之一中定义,反之则不然。

build.gradle.kts (:kmm_shared:feature_a)

kotlin {
    sourceSets {
        val commonMain by getting {
            dependencies {
                api(project(":kmm_shared:domain"))
            }
        }
}

有了这个,android sourceSet 也不需要包含依赖项。

总帐

于 2020-12-08T22:13:16.047 回答