Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e1a2edb6 authored by Aayush Gupta's avatar Aayush Gupta
Browse files

gradle: Switch to mavenCentral() inplace of jCenter()

- jCenter() has been deprecated

Ref:
- [1]: https://developer.android.com/studio/build/jcenter-migration



Signed-off-by: Aayush Gupta's avatarAayush Gupta <theimpulson@e.email>
parent 403f9650
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

buildscript {
    repositories {
        jcenter()
        mavenCentral()
        google()
    }
    dependencies {
@@ -15,7 +15,7 @@ buildscript {

allprojects {
    repositories {
        jcenter()
        mavenCentral()
        google()
    }
}