Android studio You should manually set the same version via DependencyResolution

1.导入项目异常如下:

Android dependency 'com.lxj:easyadapter' has different version for the compile (1.1.1) and runtime (1.2.0) classpath. You should manually set the same version via DependencyResolution

Android依赖项“ com.lxj:easyadapter”对于编译(1.1.1)和运行时(1.2.0)类路径具有不同的版本。 您应该通过DependencyResolution手动设置相同的版本

2.解决方法:

将:

implementation 'com.lxj:easyadapter:1.2.0'

改为:

implementation 'com.lxj:easyadapter:1.1.1'

3.介绍:

项目为:https://github.com/li-xiaojun/XPopup

功能强大,UI简洁,交互优雅的通用弹窗!可以替代Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner等组件,自带十几种效果良好的动画, 支持完全的UI和动画自定义!(Powerful and Beautiful Popup,can absolutely replace Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner. With built-in animators , very easy to custom popup view.)

适用于项目的多种场景

你可能感兴趣的:(Android,Studio,Error)