Skip to content

Commit f71f902

Browse files
authored
Switch from JCenter to Maven Central (spaceapi-community#6)
1 parent 7f195af commit f71f902

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333
implementation "androidx.annotation:annotation:1.1.0"
3434

3535
// SpaceAPI Library
36-
implementation "spaceapi-community:spaceapi-kt:0.2.1"
36+
implementation "io.github.spaceapi-community:spaceapi-kt:0.3.0"
3737

3838
// JUnit for testing
3939
testImplementation 'junit:junit:4.13.1'

build.gradle

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@
22

33
buildscript {
44
repositories {
5-
jcenter()
5+
mavenCentral()
66
google()
77
}
88

99
dependencies {
10+
// Android gradle integration
1011
classpath 'com.android.tools.build:gradle:4.1.0'
12+
1113
// NOTE: Do not place your application dependencies here; they belong
1214
// in the individual module build.gradle files
1315
}
1416
}
1517

1618
allprojects {
1719
repositories {
18-
jcenter()
19-
maven { url "https://dl.bintray.com/spaceapi-community/maven" }
20+
mavenCentral()
2021
google()
2122
}
2223
}

0 commit comments

Comments
 (0)