美文网首页
Could not find any version that

Could not find any version that

作者: StormerX | 来源:发表于2019-08-13 20:30 被阅读0次

PhotoView - Implementation of ImageView for Android that supports zooming, by various touch gestures.
https://github.com/chrisbanes/PhotoView

在Android Studio中引用了PhotoView之后,编译错误,报错:

Could not find any version that matches com.github.chrisbanes:PhotoView:latest.release.here.

解决办法

dependencies {
    implementation 'com.github.chrisbanes:PhotoView:latest.release.here'
}

把latest.release.here修改为具体的版本号即可。

dependencies {
    implementation 'com.github.chrisbanes:PhotoView:2.3.0'
}

相关文章

网友评论

      本文标题:Could not find any version that

      本文链接:https://www.haomeiwen.com/subject/lacijctx.html