解决安卓中 ARouter There is no route match the path in group问题

原文 

解决ARouter There is no route match the path in group问题

1.java项目配置问题:

ARouter配置(build.gradle的default内部)

javaCompileOptions {
 
annotationProcessorOptions {
 
arguments = [ AROUTER_MODULE_NAME : project.getName() ]
 
}
 
}
dependencies {
 
...
 
implementation 'com.alibaba:arouter-api:1.5.2'
 
annotationProcessor 'com.alibaba:arouter-compiler:1.2.1'
 
}
如果每个model都依赖一个基础库,定义在基础库下即可(都是java配置情况下,有kotlin的model需要单独配置)

2.配置路径问题

正确的注解形式应该是 (@Route(path="/test/test"),至少两级结构,首个"/"不能省掉,查看调用和注解是否一致,可以定义为常量。

3.kotlin的配置

kotlin的arouter设置(build.gradle的default内部)

kapt {
 
arguments {
 
arg("AROUTER_MODULE_NAME", project.getName())
 
}
 
}
最外层顶部需要配置apply plugin: 'kotlin-kapt'

dependencies {
 
...
 
implementation 'com.alibaba:arouter-api:1.5.2'
 
kapt 'com.alibaba:arouter-compiler:1.2.1'
 
}
4.看是否有model没有被添加依赖

implementation project(':mylibrary_common')

也可以每个model都配置一下

implementation 'com.alibaba:arouter-api:1.5.2'
 
kapt 'com.alibaba:arouter-compiler:1.2.1'


5.重启,卸载重装

原文链接:https://blog.csdn.net/sinat_29097969/article/details/119184627

你可能感兴趣的:(#报错,java,开发语言)