Skip to content

Commit 218d48f

Browse files
committed
ci: update build configuration and add jcenter repository
- Add jcenter repository to build.gradle for better dependency management- Update Android CI workflow to include build-jdk job
1 parent d6df038 commit 218d48f

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/android-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55

66
jobs:
77
build:
8+
name: build-jdk
89
strategy:
910
matrix:
1011
jdk:

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ buildscript {
1717
mavenLocal()
1818
mavenCentral()
1919
maven { url 'https://jitpack.io' }
20+
jcenter { url 'https://jcenter.bintray.com/'}
2021
google()
2122
}
2223

@@ -43,8 +44,9 @@ allprojects {
4344
// }
4445
// public java and android repository
4546
// maven { url 'https://maven.aliyun.com/repository/public/' }
46-
maven { url 'https://jitpack.io' }
4747
mavenCentral()
48+
maven { url 'https://jitpack.io' }
49+
jcenter { url 'https://jcenter.bintray.com/'}
4850
google()
4951
}
5052

0 commit comments

Comments
 (0)