From a357026676ae02a05fa0352fa54760ac22657f57 Mon Sep 17 00:00:00 2001 From: CappielloAntonio Date: Sun, 25 Jul 2021 14:39:33 +0200 Subject: [PATCH] Added xml parser dependency --- app/build.gradle | 8 ++++++-- build.gradle | 7 ++++++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 9018bcf9..f7c6f233 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -78,10 +78,14 @@ dependencies { androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' // Retrofit - implementation 'com.google.code.gson:gson:2.8.7' implementation 'com.squareup.retrofit2:retrofit:2.9.0' - implementation 'com.squareup.retrofit2:converter-gson:2.9.0' implementation 'com.squareup.okhttp3:logging-interceptor:4.9.1' + implementation 'com.tickaroo.tikxml:retrofit-converter:0.8.15' + + // XMLParser + implementation 'com.tickaroo.tikxml:annotation:0.9.0_11-SNAPSHOT' + implementation 'com.tickaroo.tikxml:core:0.9.0_11-SNAPSHOT' + annotationProcessor 'com.tickaroo.tikxml:processor:0.9.0_11-SNAPSHOT' // implementation 'net.beardbot:subsonic-client:0.2.0' diff --git a/build.gradle b/build.gradle index 890b9361..2ab8ed40 100644 --- a/build.gradle +++ b/build.gradle @@ -17,7 +17,12 @@ allprojects { repositories { google() jcenter() - maven { url 'https://jitpack.io' } + maven { + url 'https://jitpack.io' + } + maven { + url 'http://oss.sonatype.org/content/repositories/snapshots' + } } }