Update musikdroid to latest AGP and other dependencies, including

ExoPlayer (which seems to improve Opus playback support)
This commit is contained in:
casey langen 2023-08-01 19:46:06 -07:00
parent 4ffa2f4b29
commit 3dad0594cc
2 changed files with 13 additions and 13 deletions

View File

@ -18,8 +18,8 @@ android {
applicationId "io.casey.musikcube.remote" applicationId "io.casey.musikcube.remote"
minSdkVersion 21 minSdkVersion 21
targetSdk 33 targetSdk 33
versionCode 300 versionCode 302
versionName "3.0.0" versionName "3.0.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
@ -62,14 +62,14 @@ dependencies {
exclude group: 'com.android.support', module: 'support-annotations' exclude group: 'com.android.support', module: 'support-annotations'
}) })
implementation 'com.google.firebase:firebase-analytics:21.2.2' implementation 'com.google.firebase:firebase-analytics:21.3.0'
implementation 'com.google.firebase:firebase-core:21.1.1' implementation 'com.google.firebase:firebase-core:21.1.1'
implementation 'com.google.firebase:firebase-crashlytics:18.3.6' implementation 'com.google.firebase:firebase-crashlytics:18.4.0'
implementation 'org.slf4j:slf4j-android:1.7.21' implementation 'org.slf4j:slf4j-android:1.7.21'
implementation "androidx.room:room-runtime:2.5.1" implementation "androidx.room:room-runtime:2.5.2"
kapt "androidx.room:room-compiler:2.5.1" kapt "androidx.room:room-compiler:2.5.2"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.1" implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.1"
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0" implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
@ -80,21 +80,21 @@ dependencies {
kapt 'com.google.dagger:dagger-compiler:2.42' kapt 'com.google.dagger:dagger-compiler:2.42'
implementation 'com.neovisionaries:nv-websocket-client:1.31' implementation 'com.neovisionaries:nv-websocket-client:1.31'
implementation 'com.squareup.okhttp3:okhttp:4.9.2' implementation 'com.squareup.okhttp3:okhttp:4.11.0'
implementation 'com.github.bumptech.glide:glide:4.10.0' implementation 'com.github.bumptech.glide:glide:4.10.0'
implementation "com.github.bumptech.glide:okhttp3-integration:4.10.0" implementation "com.github.bumptech.glide:okhttp3-integration:4.10.0"
kapt 'com.github.bumptech.glide:compiler:4.12.0' kapt 'com.github.bumptech.glide:compiler:4.12.0'
implementation 'io.reactivex.rxjava2:rxjava:2.2.16' implementation 'io.reactivex.rxjava2:rxjava:2.2.16'
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1' implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
implementation 'io.reactivex.rxjava2:rxkotlin:2.4.0' implementation 'io.reactivex.rxjava2:rxkotlin:2.4.0'
implementation 'com.google.android.exoplayer:exoplayer:2.18.5' implementation 'com.google.android.exoplayer:exoplayer:2.19.0'
implementation 'com.google.android.exoplayer:extension-okhttp:2.18.5' implementation 'com.google.android.exoplayer:extension-okhttp:2.19.0'
implementation 'com.simplecityapps:recyclerview-fastscroll:2.0.0' implementation 'com.simplecityapps:recyclerview-fastscroll:2.0.0'
implementation 'me.zhanghai.android.materialprogressbar:library:1.6.1' implementation 'me.zhanghai.android.materialprogressbar:library:1.6.1'
implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.recyclerview:recyclerview:1.3.0' implementation 'androidx.recyclerview:recyclerview:1.3.1'
implementation 'com.google.android.material:material:1.8.0' implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.media:media:1.6.0' implementation 'androidx.media:media:1.6.0'
testImplementation 'junit:junit:4.13.1' testImplementation 'junit:junit:4.13.1'

View File

@ -7,10 +7,10 @@ buildscript {
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:8.0.0' classpath 'com.android.tools.build:gradle:8.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.3.15' classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.5' classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.7'
} }
} }