Skip to content

Commit c2829ed

Browse files
committed
update repositories
Remove `jcenter()` since it does not get updates any more. - Replaced with `mavenCentral()` Upgraded to short names build into Gradle instead of URL.
1 parent 0e12e92 commit c2829ed

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

Examples/OneSignalDemo/build.gradle

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
buildscript {
44
repositories {
55
google()
6-
jcenter()
7-
maven { url 'https://plugins.gradle.org/m2/'}
8-
6+
mavenCentral()
7+
gradlePluginPortal()
98
}
109
dependencies {
1110
classpath 'com.android.tools.build:gradle:3.5.0'
@@ -20,9 +19,7 @@ buildscript {
2019
allprojects {
2120
repositories {
2221
google()
23-
jcenter()
24-
maven { url 'https://maven.google.com' }
25-
22+
mavenCentral()
2623
}
2724
}
2825

0 commit comments

Comments
 (0)