kotlin方式集成Arouter遇到问题

按照Arouter git 官方的kotlin方式配置 遇到如下问题

Execution failed for task ':app:checkDebugDuplicateClasses'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable
   > Duplicate class android.support.v4.app.INotificationSideChannel found in modules core-1.3.1-runtime (androidx.core:core:1.3.1) and support-compat-25.2.0-runtime (com.android.support:support-compat:25.2.0)
     Duplicate class android.support.v4.app.INotificationSideChannel$Stub found in modules core-1.3.1-runtime (androidx.core:core:1.3.1) and support-compat-25.2.0-runtime (com.android.support:support-compat:25.2.0)
     Duplicate class android.support.v4.app.INotificationSideChannel$Stub$Proxy found in modules core-1.3.1-runtime (androidx.core:core:1.3.1) and support-compat-25.2.0-runtime (com.android.support:support-compat:25.2.0)
     Duplicate class android.support.v4.os.IResultReceiver found in modules core-1.3.1-runtime (androidx.core:core:1.3.1) and support-compat-25.2.0-runtime (com.android.support:support-compat:25.2.0)
     Duplicate class android.support.v4.os.IResultReceiver$Stub found in modules core-1.3.1-runtime (androidx.core:core:1.3.1) and support-compat-25.2.0-runtime (com.android.support:support-compat:25.2.0)
     Duplicate class android.support.v4.os.IResultReceiver$Stub$Proxy found in modules core-1.3.1-runtime (androidx.core:core:1.3.1) and support-compat-25.2.0-runtime (com.android.support:support-compat:25.2.0)
     Duplicate class android.support.v4.os.ResultReceiver found in modules core-1.3.1-runtime (androidx.core:core:1.3.1) and support-compat-25.2.0-runtime (com.android.support:support-compat:25.2.0)
     Duplicate class android.support.v4.os.ResultReceiver$1 found in modules core-1.3.1-runtime (androidx.core:core:1.3.1) and support-compat-25.2.0-runtime (com.android.support:support-compat:25.2.0)
     Duplicate class android.support.v4.os.ResultReceiver$MyResultReceiver found in modules core-1.3.1-runtime (androidx.core:core:1.3.1) and support-compat-25.2.0-runtime (com.android.support:support-compat:25.2.0)
     Duplicate class android.support.v4.os.ResultReceiver$MyRunnable found in modules core-1.3.1-runtime (androidx.core:core:1.3.1) and support-compat-25.2.0-runtime (com.android.support:support-compat:25.2.0)

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.


解决办法gradle.properties添加如下就可以了
(使用的AS是4.2.1版本默认创建的项目只有android.useAndroidX=true没有android.enableJetifier=true)

android.useAndroidX=true
android.enableJetifier=true

跳转时候找不到path

ARouter::There is no route match the path

一般可能有几种情况
1.kotlin 集成arouter遇到了问题

// 可以参考 module-kotlin 模块中的写法
apply plugin: 'kotlin-kapt'

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

dependencies {
    api 'com.alibaba:arouter-api:1.4.0'    //在base lib中导入即可,其他module只用依赖base就可以
    kapt 'com.alibaba:arouter-compiler:1.2.2' //每个module都需要依赖,否则会报ARouter::There is no route match the path
    ...
}
  1. 检查界面上方@Route(path = “/mine/LoginActivity”) 这里添加的和跳转的路径是否一致
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值