提问人:Hasnain Ghias 提问时间:7/15/2020 最后编辑:Hasnain Ghias 更新时间:5/20/2022 访问量:56
无法解决“com.github.bashizip:business-hours-picker:v1.1.0”
Failed to resolve 'com.github.bashizip:business-hours-picker:v1.1.0'
问:
我遇到了一个奇怪的问题。我正在添加此库以进行营业时间拣选。
https://github.com/bashizip/business-hours-picker
但奇怪的是,旧版本的添加没有任何问题。但是当我添加最新的一个时,它不是通过gradle解析的。
我试过:
清洁项目
重建了它
使缓存失效并重新启动
但是我无法添加库。
我也在 github 问题部分发布了这个问题。
这是我的项目级别评分:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
// Android Navigation Safe Args Classpath
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
答:
1赞
bashizip
5/23/2021
#1
请尝试最新版本的库 (1.1.1):
implementation 'com.github.bashizip:business-hours-picker:1.1.1'
它有许多改进,错误修复和 Gradle 依赖项已升级。
PS:我是库的作者。
评论
v.1.1.0
.
v
implementation 'com.github.bashizip:business-hours-picker:v.1.1.0'