4

我正在尝试开发 Kotlin AnnotationProcessor 库,但我不知道为什么会出现此错误:

错误:任务“:app:javaPreCompileDebug”的执行失败。
> 现在必须显式声明注释处理器。发现编译类路径的以下依赖项包含注释处理器。请将它们添加到 annotationProcessor 配置中。
    - compiler.jar (project :compiler)
  或者,设置 android.defaultConfig.javaCompileOptions.annotationProcessorOptions.includeCompileClasspath = true 以继续之前的行为。请注意,此选项已弃用,将来将被删除。
  有关更多详细信息,请参阅https://developer.android.com/r/tools/annotation-processor-error-message.html

我知道如上所述我可以使用includeCompileClasspath = true并且我尝试过它并且它工作正常。但正如所提到的,它已被弃用,很快被删除,并且预计将用于您根据 android doc 不使用的库。

所以我正在寻找更清洁的解决方案。

应用模块

你好.kt

@HelloGenerated
class Hello(){
    override fun showLog() {
        Log.i(Hello::class.simpleName, "${Gahfy_Hello().getName()}")
    }
}

构建.gradle

依赖项{ kapt project(":compiler") compileOnly project(":compiler") implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" }

编译器模块

HelloGenerated.kt

@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.SOURCE)
annotation class HelloGenerated

我也试过没有 Target 和 Retention 并且有同样的问题

HelloGenerator.kt

@SupportedAnnotationTypes("net.gahfy.HelloGenerated")
class HelloGeneratedInjectorProcessor: AbstractProcessor() {

    override fun getSupportedAnnotationTypes(): MutableSet<String> {
        return mutableSetOf(HelloGenerated::class.java.name)
    }

    override fun getSupportedSourceVersion(): SourceVersion {
        return SourceVersion.latest()
    }

    override fun process(annotations: MutableSet<out TypeElement>, roundEnv: RoundEnvironment): Boolean {
        val annotation = annotations.firstOrNull { it.toString() == "net.gahfy.HelloGenerated" } ?: return false
        for (element in roundEnv.getElementsAnnotatedWith(annotation)) {
            val className = element.simpleName.toString()
            val `package` = processingEnv.elementUtils.getPackageOf(element).toString()
            generateClass(className, `package`)
        }
        return true
    }

    private fun generateClass(className: String, `package`: String) {
        val kotlinGeneratedPath = (processingEnv.options["kapt.kotlin.generated"] as String).replace("kaptKotlin", "kapt")
        val kaptKotlinGenerated = File(kotlinGeneratedPath)
        val source = "package $`package`\n\nclass Lachazette_$className(){fun getName():String{return \"World\"}}"
        val relativePath = `package`.replace('.', File.separatorChar)

        val folder = File(kaptKotlinGenerated, relativePath).apply { if(!exists()){mkdirs()} }
        File(folder, "Lachazette_$className.kt").writeText(source)
    }

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

构建.gradle

apply plugin: 'java-library'
apply plugin: 'kotlin'

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
}

sourceCompatibility = "1.7"
targetCompatibility = "1.7"

资源/META-INF/services/javax.annotation.processing.Processor

net.gahfy.HelloGenerator

我现在正在寻找一种更清洁的解决方案,而不仅仅是includeCompileClasspath = true.

一些信息:

  • kapt 效果很好,我将它与 Dagger 和 BindingAdapter 一起使用没有任何问题
  • 我的注释处理器在构建时处理得很好,日志中的消息是我设置时的好消息includeCompileClasspath = true

非常感谢

4

1 回答 1

1

不确定这是否与您的问题 100% 相关,但在将 auto-value 移动到kapt. 我通过将自动值依赖项声明为kapt and annotationProcessor来解决它。

所以在你的情况下:

dependencies{
    kapt project(":compiler")
    annotationProcessor project(":compiler")
    compileOnly project(":compiler")
    implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
}
于 2018-03-25T13:20:12.393 回答