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

Verified Commit e065115e authored by Saalim Quadri's avatar Saalim Quadri
Browse files

fix: Resolve legacy gradle deps



* This is needed as of now, but we need to upstream later

Signed-off-by: default avatarSaalim Quadri <danascape@gmail.com>
parent cdc31358
Loading
Loading
Loading
Loading
+26 −6
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ buildscript {
    ext.coroutines_version = '1.4.3'
    ext.dagger_version = "2.16"
    ext.espresso_version = '3.1.0-alpha3'
    ext.exoplayer_version = "2.8.1"
    ext.exoplayer_version = "2.8.3"
    ext.glide_version = "4.8.0"
    ext.junit_version = '4.12'
    ext.kotlin_version = '1.7.20'
@@ -35,9 +35,10 @@ buildscript {
    ext.timber_version = '4.5.1'

    repositories {
        maven { url 'https://maven.google.com' }
        jcenter()
        google()
        jcenter()
        mavenCentral()
        maven { url 'https://maven.google.com' }
    }

    dependencies {
@@ -53,15 +54,34 @@ allprojects {
    repositories {
        google()
        jcenter()
        mavenCentral()
        maven { url "https://jitpack.io" }
        maven { url 'https://gitlab.e.foundation/api/v4/groups/9/-/packages/maven'}
        maven { url 'https://maven.fabric.io/public' }
        maven { url 'https://maven.google.com' }
        maven {
            name 'glide-snapshot'
            url 'https://oss.sonatype.org/content/repositories/snapshots'
        }
        mavenCentral()
        // Liferay CDN repo for legacy deps
        maven {
            url 'https://repository-cdn.liferay.com/nexus/content/repositories/public/'
            content {
                includeGroup 'com.github.pengrad'
                includeGroup 'com.google.android.exoplayer'
                includeGroup 'io.realm'
                includeGroup 'com.google.android'
            }
        }
        // Legacy jcenter
        maven {
            url 'https://jcenter.bintray.com'
            content {
                includeGroup 'com.google.android'
                includeGroup 'com.callcontrol'
                includeGroup 'io.michaelrocks'
                includeGroup 'com.klinkerapps'
                includeGroup 'com.squareup.okhttp'
            }
        }
    }
}

+2 −2
Original line number Diff line number Diff line
@@ -84,12 +84,12 @@ dependencies {
    implementation "org.jetbrains.kotlinx:kotlinx-coroutines-rx2:$coroutines_version"
    implementation "org.jetbrains.kotlinx:kotlinx-coroutines-reactive:$coroutines_version"

    implementation 'com.callcontrol:datashare:1.2.0'
    implementation 'com.callcontrol:datashare:1.3.0'
    implementation "com.f2prateek.rx.preferences2:rx-preferences:$rx_preferences_version"
    implementation "com.jakewharton.timber:timber:$timber_version"
    implementation "com.squareup.moshi:moshi:$moshi_version"
    implementation "com.squareup.okhttp3:okhttp:$okhttp3_version"
    implementation 'io.michaelrocks:libphonenumber-android:8.10.16'
    implementation 'io.michaelrocks:libphonenumber-android:8.13.35'
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    implementation project(":android-smsmms")
    implementation project(':common')