Upgrade dependencies
This commit is contained in:
parent
02e94af92c
commit
f4166d2728
2 changed files with 9 additions and 7 deletions
|
@ -61,13 +61,13 @@ dependencies {
|
|||
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
||||
|
||||
// Navigation
|
||||
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
|
||||
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
|
||||
def navigation_version = "2.3.5"
|
||||
implementation "androidx.navigation:navigation-fragment-ktx:$navigation_version"
|
||||
implementation "androidx.navigation:navigation-ui-ktx:$navigation_version"
|
||||
|
||||
// RecyclerView
|
||||
implementation "androidx.recyclerview:recyclerview:1.2.1"
|
||||
implementation "androidx.recyclerview:recyclerview-selection:1.1.0"
|
||||
implementation files('libs/extension-ffmpeg-release.aar')
|
||||
|
||||
// Room
|
||||
def room_version = "2.3.0"
|
||||
|
@ -76,12 +76,13 @@ dependencies {
|
|||
implementation "androidx.room:room-ktx:$room_version"
|
||||
|
||||
// Jellyfin
|
||||
def jellyfin_version = "1.0.0-beta.9"
|
||||
def jellyfin_version = "1.0.1"
|
||||
implementation "org.jellyfin.sdk:jellyfin-platform-android:$jellyfin_version"
|
||||
|
||||
// Glide
|
||||
implementation 'com.github.bumptech.glide:glide:4.12.0'
|
||||
kapt 'com.github.bumptech.glide:compiler:4.12.0'
|
||||
def glide_version = "4.12.0"
|
||||
implementation "com.github.bumptech.glide:glide:$glide_version"
|
||||
kapt "com.github.bumptech.glide:compiler:$glide_version"
|
||||
|
||||
// Hilt
|
||||
def hilt_version = "2.37"
|
||||
|
@ -92,6 +93,7 @@ dependencies {
|
|||
def exoplayer_version = "2.14.1"
|
||||
implementation "com.google.android.exoplayer:exoplayer-core:$exoplayer_version"
|
||||
implementation "com.google.android.exoplayer:exoplayer-ui:$exoplayer_version"
|
||||
implementation files('libs/extension-ffmpeg-release.aar')
|
||||
|
||||
// Testing
|
||||
testImplementation 'junit:junit:4.13.2'
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
buildscript {
|
||||
ext.kotlin_version = "1.5.20"
|
||||
ext.kotlin_version = "1.5.21"
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
|
|
Loading…
Reference in a new issue