【错误记录】Android 编译时技术版本警告 ( 注解处理器与主应用支持的 Java 版本不匹配 )
【摘要】
文章目录
一、报错信息二、问题分析三、解决方案
一、报错信息
在使用 Android 编译时技术 , 涉及 编译时注解 , 注解处理器 ;
开发注解处理器后 , ...
一、报错信息
在使用 Android 编译时技术 , 涉及 编译时注解 , 注解处理器 ;
开发注解处理器后 , 编译报如下警告 ;
该警告不会影响编译 , 也不会中断编译的进行 , 编译依然能成功 ;
警告: 来自注释处理程序 'org.gradle.api.internal.tasks.compile.processing.TimeTrackingProcessor' 的受支持 source 版本 'RELEASE_7' 低于 -source '1.8'
注: SupportedAnnotationTypes : kim.hsl.router_annotation.Route
1 个警告
- 1
- 2
- 3
二、问题分析
在 Android 主应用的 build.gradle 构建脚本中 , 支持的 Java 版本是 1.8 ;
android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
- 1
- 2
- 3
- 4
- 5
- 6
在 编译时注解 依赖库 中的 build.gradle 构建脚本如下 :
plugins {
id 'java-library'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
在注解处理器依赖库 中的 build.gradle 构建脚本如下 :
plugins {
id 'java-library'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(path: ':router-annotation')
annotationProcessor 'com.google.auto.service:auto-service:1.0-rc4'
compileOnly 'com.google.auto.service:auto-service:1.0-rc4'
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
注解处理器上使用 @SupportedSourceVersion 注解设置的支持的 Java 版本号也是 1.7 ;
// 自动注册注解处理器
@AutoService(Processor.class)
// 支持的注解类型
@SupportedAnnotationTypes({"kim.hsl.router_annotation.Route"})
// 支持的 Java 版本
@SupportedSourceVersion(SourceVersion.RELEASE_7)
public class RouterProcessor extends AbstractProcessor {
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
三、解决方案
将上述的 Java 版本号都设置为 1.8 ;
编译时注解 依赖库 的 build.gradle :
plugins {
id 'java-library'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
注解处理器 依赖库 的 build.gradle :
plugins {
id 'java-library'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(path: ':router-annotation')
annotationProcessor 'com.google.auto.service:auto-service:1.0-rc4'
compileOnly 'com.google.auto.service:auto-service:1.0-rc4'
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
注解处理器 支持的 Java 版本号 : @SupportedSourceVersion(SourceVersion.RELEASE_8)
支持到 1.8 ;
// 自动注册注解处理器
@AutoService(Processor.class)
// 支持的注解类型
@SupportedAnnotationTypes({"kim.hsl.router_annotation.Route"})
// 支持的 Java 版本
@SupportedSourceVersion(SourceVersion.RELEASE_8)
public class RouterProcessor extends AbstractProcessor {
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
修改后 , 编译时不再报上述警告 ;
文章来源: hanshuliang.blog.csdn.net,作者:韩曙亮,版权归原作者所有,如需转载,请联系作者。
原文链接:hanshuliang.blog.csdn.net/article/details/117152998
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)