Skip to content

Commit

Permalink
chore(dependencies): upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Jul 24, 2023
1 parent 4ef2991 commit 7b88689
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlinVersion = '1.6.10'
dokkaVersion = '1.6.10'
kotlinVersion = '1.8.0'
dokkaVersion = '1.8.20'
}

dependencies {
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion"
}
}
plugins {
id 'com.android.application' version '7.4.0' apply false
id 'com.android.library' version '7.4.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
id 'com.android.application' version '7.4.2' apply false
id 'com.android.library' version '7.4.2' apply false
id 'org.jetbrains.kotlin.android' version "$kotlinVersion" apply false
}

task clean(type: Delete) {
Expand Down
9 changes: 5 additions & 4 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,14 @@ android {
dependencies {
implementation project(':player')

implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.core:core-ktx:1.10.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.3'
implementation 'androidx.navigation:navigation-fragment-ktx:2.6.0'
implementation 'androidx.navigation:navigation-ui-ktx:2.6.0'
implementation 'androidx.preference:preference-ktx:1.2.0'

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
Expand Down
10 changes: 5 additions & 5 deletions player/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ dokkaHtml {

dependencies {

implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.core:core-ktx:1.10.1'
api 'com.android.volley:volley:1.2.1'
implementation 'com.google.android.exoplayer:exoplayer:2.18.5'
implementation 'com.google.android.exoplayer:exoplayer-hls:2.18.5'
implementation 'video.api:android-player-analytics:1.2.3'
implementation 'video.api:android-player-analytics-exoplayer:1.2.3'
implementation 'com.google.android.exoplayer:exoplayer:2.19.0'
implementation 'com.google.android.exoplayer:exoplayer-hls:2.19.0'
implementation 'video.api:android-player-analytics:1.3.1'
implementation 'video.api:android-player-analytics-exoplayer:1.3.1'

testImplementation 'org.robolectric:robolectric:4.8.1'
testImplementation 'org.robolectric:shadows-httpclient:4.5.1'
Expand Down

0 comments on commit 7b88689

Please sign in to comment.