gpt4 book ai didi

Kotlin 多平台注释处理

转载 作者:行者123 更新时间:2023-12-03 14:48:04 25 4
gpt4 key购买 nike

Kotlin Multiplatform 中的注释处理可以通过 kapt 完成当一个人有一个jvm目标时。

但是如果没有 jvm 目标,如何处理注释呢?

具体来说,我想在处理来自 commonMain 的注释时生成代码.但我不知道如何处理这些。

我的注释处理器现在只记录:

@SupportedSourceVersion(SourceVersion.RELEASE_8)
@SupportedAnnotationTypes("ch.hippmann.annotation.Register")
@SupportedOptions(RegisterAnnotationProcessor.KAPT_KOTLIN_GENERATED_OPTION_NAME)
class RegisterAnnotationProcessor : AbstractProcessor(){

companion object {
const val KAPT_KOTLIN_GENERATED_OPTION_NAME = "kapt.kotlin.generated"
}

override fun process(annotations: MutableSet<out TypeElement>?, roundEnv: RoundEnvironment?): Boolean {
processingEnv.messager.printMessage(Diagnostic.Kind.WARNING, "Processing")
return true
}


}

注释位于单独的多平台模块中,位于 commonMain :
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.RUNTIME)
annotation class Register

并且在 commonMain的一个项目中使用: build.gradle 的一部分:
kotlin {
jvm()
// For ARM, should be changed to iosArm32 or iosArm64
// For Linux, should be changed to e.g. linuxX64
// For MacOS, should be changed to e.g. macosX64
// For Windows, should be changed to e.g. mingwX64
linuxX64("linux")
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib-common')
implementation project(":annotations")
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
jvmMain {
dependencies {
implementation kotlin('stdlib-jdk8')
}
}
jvmTest {
dependencies {
implementation kotlin('test')
implementation kotlin('test-junit')
}
}
linuxMain {
}
linuxTest {
}
}
}

dependencies {
kapt project(":annotationProcessor")
}

这就像日志一样工作,因为有 jvm()目标存在。但是如果我删除它,我就不能使用 kapt .

那么当有 时如何处理注释没有 jvm目标?

最佳答案

你似乎已经解决了你的问题,但如果有人最终来到这里......
我可以在没有任何问题的情况下在通用代码上使用 kapt,如下所示:

val commonMain by getting {
dependencies {
...
configurations.get("kapt").dependencies.add(project(": annotationProcessor"))
}
}
它处理 commonMain 上的注释代码没有问题。不过,我确实有一个 android 目标,所以如果问题只是在根本没有 jvm 目标时才出现,那么 ymmv。还有一些注释处理器适用于 Kotlin Native,例如 https://github.com/Foso/MpApt .

关于Kotlin 多平台注释处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59784513/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com