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

Commit 4ff591bc authored by Vincent Bourgmayer's avatar Vincent Bourgmayer
Browse files

fix: Add missing dependency

parent 835073a8
Loading
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -97,7 +97,13 @@ android {
}

dependencies {
    implementation 'foundation.e:Nextcloud-Android-Library:1.0.9-u2.17-release'
    implementation("foundation.e:Nextcloud-Android-Library:1.0.9-u2.17-release") {
        exclude group: 'com.gitlab.bitfireAT', module: 'dav4jvm' // Got from AccountManager
        exclude group: 'com.github.bitfireAT', module: 'dav4jvm'
        exclude group: 'org.ogce', module: 'xpp3' // unused in Android and brings wrong Junit version
        exclude group: 'com.squareup.okhttp3'
    }
    
    implementation "commons-httpclient:commons-httpclient:3.1@jar"
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    api 'androidx.annotation:annotation:1.7.0'
@@ -114,6 +120,7 @@ dependencies {
    implementation 'foundation.e:elib:0.0.1-alpha11'
    implementation 'foundation.e.lib:telemetry:0.0.11-alpha'


    androidTestImplementation 'androidx.test:runner:1.5.2'
    androidTestImplementation 'androidx.test:rules:1.5.0'
    androidTestImplementation 'androidx.annotation:annotation:1.7.0'