NiceImageView icon indicating copy to clipboard operation
NiceImageView copied to clipboard

不建议在项目中直接包含appcompat包

Open DubheBroken opened this issue 6 years ago • 0 comments

最好不要在项目中直接写死com.android.support:appcompat-v7的版本,如果导入时版本不兼容,gradle会报错. 在readme中说明需要导入com.android.support:appcompat-v7:+即可.

或者实在不想改的话,这么导也是可以的

implementation('com.github.SheHuan:NiceImageView:1.0.5') {
        exclude group: 'com.android.support', module: 'appcompat-v7'
    }

DubheBroken avatar May 22 '19 09:05 DubheBroken