异常:Duplicate class android.support.v4.os.ResultReceiver$MyRunnable found in modules core-1.6.0-runtime (androidx.core:core:1.6.0)
原因是:因为工程中有使用support的包和androidx的包冲突导致
解决方法:
打开工程目录下的gradle.properties文件
添加如下:
//两个需要一起设置,特别是下面的,不开启就会出错 android.useAndroidX=true 表示“Android插件会使用对应的AndroidX库,而非Support库”;未设置时默认为false; android.enableJetifier=true 表示Android插件会通过重写其二进制文件来自动迁移现有的第三方库,以使用AndroidX依赖项;未设置时默认为false;