升级到最新的 Android Studio 3.0.1 后,我在 Kapt 注释处理中遇到了一些错误。
错误:
e: @TargetApi(Build.VERSION_CODES.LOLLIPOP)
e: ^
e: symbol: variable LOLLIPOP
e: location: class VERSION_CODES
e: C:\code\repos\android\app\build\tmp\kapt3\stubs\CustomView.java:82: error: annotation @TargetApi is missing a default value for the element 'value'
e: java.lang.IllegalStateException: failed to analyze: org.jetbrains.kotlin.kapt3.diagnostic.KaptError: Error while annotation processing
at org.jetbrains.kotlin.analyzer.AnalysisResult.throwIfError(AnalysisResult.kt:57)
at org.jetbrains.kotlin.cli.jvm.compiler.KotlinToJVMBytecodeCompiler.compileModules(KotlinToJVMBytecodeCompiler.kt:138)
at org.jetbrains.kotlin.cli.jvm.K2JVMCompiler.doExecute(K2JVMCompiler.kt:154)
at org.jetbrains.kotlin.cli.jvm.K2JVMCompiler.doExecute(K2JVMCompiler.kt:58)
at org.jetbrains.kotlin.cli.common.CLICompiler.execImpl(CLICompiler.java:103)
...
环境:
ext.kotlin_version = '1.1.51'
...gradle-4.1-all.zip
compileSdkVersion 26
在项目中还有其他使用注释处理的库(匕首,黄油刀)。TargetApi 存在多个错误。这不是视图问题本身。
有人有过类似的情况吗?有小费吗?