Kotlin ARouter There is no route match the path in group

     刚打算用kotlin做项目,结果今天用ARouter的时候遇到这个问题,就这个搞了半天才在github上查到答案,今天在这里记录一下吧,也希望能够帮助到你们。

     运行跳转的时候报ARouter::There is no route match the path [这是我跳转的路径], in group [xxxxxx][ ]刚开始看到时候是一脸懵,最后试了多种办法,发现我用的kotlin的项目却还是用的Java的依赖方式,我写的如下:

Kotlin ARouter There is no route match the path in group_第1张图片

     这里是我依赖的方式,改成下面的kotlin的这种依赖方式就好了。

Kotlin ARouter There is no route match the path in group_第2张图片

kapt {
    arguments {
        arg("AROUTER_MODULE_NAME", project.getName())
    }
}

//arouter路由
implementation 'com.alibaba:arouter-api:1.5.0'
kapt 'com.alibaba:arouter-compiler:1.2.2'   // 方便你们复制 哈哈哈

在gradle里面顶部加上  apply plugin: 'kotlin-kapt' ,不加会报错

Kotlin ARouter There is no route match the path in group_第3张图片

如上面所述解决不了你的问题 那就去这里看一下 https://github.com/alibaba/ARouter/issues

你可能感兴趣的:(遇到的问题)