Android Studio 3.0+上的Kapt问题(TargetApi)

亦余心之所善兮,虽九死其犹未悔。这篇文章主要讲述Android Studio 3.0+上的Kapt问题(TargetApi)相关的知识,希望能为你提供帮助。
在升级到最新的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 eposandroidappuild mpkapt3stubsCustomView.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) ...

【Android Studio 3.0+上的Kapt问题(TargetApi)】有关:
ext.kotlin_version = '1.1.51' ...gradle-4.1-all.zip compileSdkVersion 26

在项目中还有其他libs使用注释处理(dagger,butterknife)。 TargetApi存在多个错误。这不是View问题本身。
有人有类似的情况?有小费吗?
答案最后我找到了原因。我们使用旧的lib:
com.path:android-priority-jobqueue:1.1.2

它有旧的Android依赖项。
com.path:android-priority-jobqueue:1.1.2 com.google.android:android:2.2.1 commons-logging:commons-logging:1.1.1 org.apache.httpcomponents:httpclient:4.0.1 org.apache.httpcomponents:httpcore:4.0.1 commons-logging:commons-logging:1.1.1 commons-codec:commons-codec:1.3 org.khronos:opengl-api:gl1.1-android-2.1_r1 xerces:xmlParserAPIs:2.6.2 xpp3:xpp3:1.1.4c org.json:json:20080701


    推荐阅读