ARouter::There is no route match the path问题记录

第一种情况:ARouter必须严格按照注解来区分

在提供路由功能的模块中,在支持路由的页面上添加注解(必选)。这里的路径需要注意的是至少需要有两级,/xx/xx

@Route(path = "/test/activity")
public class YourActivity extend Activity {
    ...
}

 第二种情况:

defaultConfig {
        ...
 
        javaCompileOptions {
            annotationProcessorOptions {
                arguments = [moduleName: project.getName()]
            }
        }
 
    }
 
 
dependencies {
    ...
 
    annotationProcessor 'com.alibaba:arouter-compiler:1.1.4'
    implementation project(':base')//base模块里添加依赖
 
}

一定要让所有需要ARouter的Moudle中builde.gradle添加annotationProcessor 'com.alibaba:arouter-compiler:1.1.4'

并且在主APP的Moudle中关联所有需要的模块,否则会提示There is no route match the path,no group

你可能感兴趣的:(项目问题)