- Android Studio:Could not find an
- android studio 奇怪错误:Could not fi
- Could not find any version that
- Could not find any version that
- Could not find any version that
- Could not find any version that
- Could not find any version that
- Could not find any version that
- Could not find any version that
- Could not find any version that
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'
}
网友评论