android - 无法在 Kotlin 中构建注释处理器

标签 android kotlin kapt instant-run annotation-processor

我目前正在尝试使用 Kotlin 为 Android 编写注解处理器。项目结构如下:

/annotation
  /src/main/kotlin/<package>
    Annotation.kt
    AnnotationProcessor.kt
/sample

项目/build.gradle

buildscript {
  dependencies {
    classpath 'com.android.tools.build:gradle:3.1.1'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.31"
  }
}

注解/build.gradle

apply plugin: 'kotlin'

sourceCompatibility = 1.7
targetCompatibility = 1.7

dependencies {
  implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlinVersion"
}

示例/build.gradle

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
  ...
  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_7
    targetCompatibility JavaVersion.VERSION_1_7
  }

dependencies {
  implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlinVersion"
  implementation project(':annotation')
  kapt project(':annotation')
}

注释.kt

@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.SOURCE)
annotation class Annotation(val comment: String = "")

注释处理器.kt

class AnnotationProcessor : AbstractProcessor() {
  override fun process(annotations: MutableSet<out TypeElement>?, roundEnvironment: RoundEnvironment?): Boolean = true
}

使用 kapt,构建会在 sample:javaPreCompileDebug 上中断,并显示以下消息:

org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':sample:javaPreCompileDebug'
Caused by: java.lang.RuntimeException: Annotation processors must be explicitly declared now.  The following dependencies on the compile classpath are found to contain annotation processor.  Please add them to the annotationProcessor configuration.
- annotation.jar (project :annotation)
Alternatively, set android.defaultConfig.javaCompileOptions.annotationProcessorOptions.includeCompileClasspath = true to continue with previous behavior.  Note that this option is deprecated and will be removed in the future.
See https://developer.android.com/r/tools/annotation-processor-error-message.html for more details.

当我用 annotationProcessor 替换 kapt 时,构建在 sample:transformClassesWithInstantRunForDebug 上中断并显示以下消息:

Caused by: java.io.IOException: Failed to find byte code for javax/annotation/processing/AbstractProcessor
at com.android.build.gradle.internal.incremental.AsmUtils.lambda$static$0(AsmUtils.java:89)
at com.android.build.gradle.internal.incremental.AsmUtils.loadClass(AsmUtils.java:307)
at com.android.build.gradle.internal.incremental.AsmUtils.readClassAndInterfaces(AsmUtils.java:165)
at com.android.build.gradle.internal.incremental.AsmUtils.loadClass(AsmUtils.java:278)
at com.android.build.gradle.internal.incremental.IncrementalVisitor.instrumentClass(IncrementalVisitor.java:342)
at com.android.build.gradle.internal.transforms.InstantRunTransform.transformToClasses2Format(InstantRunTransform.java:406)
at com.android.build.gradle.internal.transforms.InstantRunTransform.lambda$doTransform$3(InstantRunTransform.java:268)
at com.android.build.gradle.internal.transforms.InstantRunTransform.lambda$null$4(InstantRunTransform.java:297)
at java.util.concurrent.ForkJoinTask$AdaptedCallable.exec(ForkJoinTask.java:1424)
... 4 more

当我禁用 Instant Run 时,一切正常。

我现在的问题是,我的配置哪里出了问题?我关注了像 this 这样的示例项目我看到的唯一大区别是注释模块分为两个(运行时和编译器)。尽管错误消息表明 Kotlin 或 Instant Run 存在问题。

最佳答案

您必须将“注释”项目分成两部分。

例子:

implementation project(':annotation-lib') // here you put Annotation.kt
kapt project(':annotation-compiler') // AnnotationProcessor.kt

不要忘记将处理器添加到注解编译器项目中的 META-INF,请参阅 What is the default annotation processors discovery process?

关于android - 无法在 Kotlin 中构建注释处理器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49769435/

相关文章:

android - 如何在Android上有效地将Couchbase文档解析为自定义Java/Kotlin类型?

android - 任务 ':app:kaptDebugKotlin' 的 java.lang.reflect.InvocationTargetException(无错误消息)

kotlin - 配置 kapt 以处理 lombok 注释

android - 此 Kotlin 代码无法访问 Handler()postDelayed,如何解决?

android - 带注释的 Android 类层次结构

android - phonegap 1.7 notificationCallback(此函数 this.sendJavascript(js))不起作用

android:state_selected 用于 ListView

eclipse - 无法在 Eclipse 中使用 Kotlin 项目运行 Spring Boot

Android JobScheduler 错误 : delay is increased after reboot (param minimumLatency)

kotlin - 使用 Room : kapt An exception occurred: java. 进行构建时出错 lang.IllegalArgumentException:void 无法转换为元素