AndroidStudio 3.0+(TargetApi)上的Kapt问题
升级到最新的Android Studio 3.0.1后,我用Kapt注释处理遇到了一些错误。AndroidStudio 3.0+(TargetApi)上的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)
...
ENV:
ext.kotlin_version = '1.1.51' ...gradle-4.1-all.zip
compileSdkVersion 26
在项目中也有其他库与使用注释处理(匕首,butterknife)。 TargetApi有多个错误。这不是视图问题本身。
任何人都有类似的情况?有小费吗?
回答:
最后我找到了原因。 我们使用旧的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
以上是 AndroidStudio 3.0+(TargetApi)上的Kapt问题 的全部内容, 来源链接: utcz.com/qa/263679.html