Skip to content

Commit

Permalink
jcenter sunset, update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
zfdang committed Nov 6, 2024
1 parent 7177647 commit 38f360b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
3 changes: 2 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ dependencies {
transitive = true
} // do not upgrade, otherwise it will cause issue
implementation 'com.oguzdev:CircularFloatingActionMenu:1.0.2'
implementation 'com.wx.wheelview:wheelview:1.3.4'
// implementation 'com.wx.wheelview:wheelview:1.3.4'
implementation files('libs/wheelview_1.3.3.jar')
implementation 'io.github.scwang90:refresh-layout-kernel:2.1.0' //核心必须依赖
implementation 'io.github.scwang90:refresh-header-classics:2.1.0' //经典刷新头
implementation 'io.github.scwang90:refresh-footer-classics:2.1.0' //经典加载
Expand Down
Binary file added app/libs/wheelview_1.3.3.jar
Binary file not shown.
14 changes: 11 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'com.github.ben-manes.versions'
buildscript {
repositories {
mavenCentral()
jcenter()
// jcenter()
google()
maven {
url "http://mvn.mob.com/android/";
Expand All @@ -22,16 +22,24 @@ buildscript {
// in the individual module build.gradle files

// 注册MobSDK
classpath 'com.mob.sdk:MobSDK:2018.0319.1724'
classpath 'com.mob.sdk:MobSDK:+'
}
}

allprojects {
repositories {
mavenCentral()
jcenter()
// jcenter()
google()
maven { url "https://jitpack.io" }
maven { url "https://maven.scijava.org/content/repositories/public/" }
maven {
url "https://repo1.maven.org/maven2/"
}
maven {
url "https://repo.spring.io/libs-milestone/"
}

}
}

Expand Down

0 comments on commit 38f360b

Please sign in to comment.