这样的基本是jar包重复,我添加photoview的时候就报错了,supportv4的重复,这时候 将原来依赖方式改成这样
implementation ('com.github.chrisbanes:PhotoView:1.2.6'){ exclude module: 'support-v4' }
就可以搞定了
这样的基本是jar包重复,我添加photoview的时候就报错了,supportv4的重复,这时候 将原来依赖方式改成这样
implementation ('com.github.chrisbanes:PhotoView:1.2.6'){ exclude module: 'support-v4' }
就可以搞定了