- Switched from subsonic-response in xml to response in json

- Retrofitting of all Subsonic models
This commit is contained in:
antonio 2023-03-08 19:19:09 +01:00
parent ca15f51c85
commit 521c51b17e
85 changed files with 682 additions and 898 deletions

View file

@ -7,11 +7,11 @@ android {
buildToolsVersion '33.0.0'
defaultConfig {
applicationId "com.cappielloantonio.playforsubsonic"
applicationId "com.cappielloantonio.playforsubsonic.test"
minSdkVersion 26
targetSdkVersion 33
versionCode 4
versionName "2.1.0"
versionName "3.0.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@ -66,33 +66,27 @@ dependencies {
implementation "com.arthurivanets.adapster:adapster:1.0.13"
// Glide
implementation 'com.github.bumptech.glide:glide:4.14.2'
implementation 'com.github.bumptech.glide:annotations:4.14.2'
implementation 'com.github.bumptech.glide:glide:4.15.0'
implementation 'com.github.bumptech.glide:annotations:4.15.0'
// Media3
implementation 'androidx.media3:media3-session:1.0.0-rc01'
implementation 'androidx.media3:media3-common:1.0.0-rc01'
implementation 'androidx.media3:media3-exoplayer:1.0.0-rc01'
implementation 'androidx.media3:media3-ui:1.0.0-rc01'
implementation 'androidx.media3:media3-cast:1.0.0-rc01'
implementation 'androidx.media3:media3-session:1.0.0-rc02'
implementation 'androidx.media3:media3-common:1.0.0-rc02'
implementation 'androidx.media3:media3-exoplayer:1.0.0-rc02'
implementation 'androidx.media3:media3-ui:1.0.0-rc02'
implementation 'androidx.media3:media3-cast:1.0.0-rc02'
annotationProcessor 'com.github.bumptech.glide:compiler:4.14.2'
annotationProcessor 'com.github.bumptech.glide:compiler:4.15.0'
annotationProcessor 'androidx.room:room-compiler:2.5.0'
// Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.6'
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 'com.tickaroo.tikxml:converter-date-rfc3339:0.9.0_11-SNAPSHOT'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
// Crash Report
// debugImplementation 'com.balsikandar.android:crashreporter:1.1.0'
// DB debug
// debugImplementation 'com.amitshekhar.android:debug-db:1.0.6'
debugImplementation 'com.amitshekhar.android:debug-db:1.0.6'
}