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 Jun 6, 2024
1 parent d50a931 commit d426d06
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {
versionName = "${properties['VERSION_NAME']}"

// Libraries
exoPlayerVersion = '1.1.1'
exoPlayerVersion = '1.3.1'
analyticsVersion = '2.0.2'
}
}
Expand Down
8 changes: 4 additions & 4 deletions compose-player/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,22 @@ android {
}

dependencies {
def composeBom = platform('androidx.compose:compose-bom:2023.10.00')
def composeBom = platform('androidx.compose:compose-bom:2024.05.00')
implementation(composeBom)
androidTestImplementation(composeBom)

api project(path: ':player')

implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.core:core-ktx:1.13.1'
implementation "androidx.compose.ui:ui"
implementation 'androidx.compose.material3:material3'
implementation 'androidx.compose.material3:material3-window-size-class:1.1.2'
implementation 'androidx.compose.material3:material3-window-size-class:1.2.1'
implementation "androidx.compose.material:material-icons-extended"
implementation "androidx.compose.ui:ui-tooling-preview"

implementation "androidx.media3:media3-ui:${exoPlayerVersion}"
implementation "androidx.media3:media3-exoplayer:${exoPlayerVersion}"
implementation "androidx.media:media:1.6.0"
implementation "androidx.media:media:1.7.0"

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
Expand Down
2 changes: 1 addition & 1 deletion examples/compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencies {
// or only import the main APIs for the underlying toolkit systems,
// such as input and measurement/layout
implementation 'androidx.compose.ui:ui'
implementation 'androidx.activity:activity-compose:1.8.0'
implementation 'androidx.activity:activity-compose:1.9.0'

// Android Studio Preview support
implementation 'androidx.compose.ui:ui-tooling-preview'
Expand Down
10 changes: 5 additions & 5 deletions examples/view/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ android {
dependencies {
implementation project(':player')

implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.10.0'
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.4'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.4'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.7'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.7'
implementation 'androidx.preference:preference-ktx:1.2.1'

testImplementation 'junit:junit:4.13.2'
Expand Down
12 changes: 6 additions & 6 deletions player/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ ext {

dependencies {

implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.core:core-ktx:1.13.1'
api 'com.android.volley:volley:1.2.1'
implementation "video.api:android-player-analytics-exoplayer:${analyticsVersion}"
implementation "androidx.media3:media3-ui:${exoPlayerVersion}"
implementation "androidx.media3:media3-exoplayer:${exoPlayerVersion}"
implementation "androidx.media3:media3-exoplayer-hls:${exoPlayerVersion}"
implementation "androidx.media:media:1.6.0"
implementation "androidx.fragment:fragment-ktx:1.6.2"
implementation "com.google.android.material:material:1.10.0"
implementation "androidx.media:media:1.7.0"
implementation "androidx.fragment:fragment-ktx:1.7.1"
implementation "com.google.android.material:material:1.12.0"

testImplementation 'org.robolectric:robolectric:4.10.3'
testImplementation 'org.robolectric:robolectric:4.12.2'
testImplementation 'org.robolectric:shadows-httpclient:4.5.1'
testImplementation 'junit:junit:4.13.2'
testImplementation 'io.mockk:mockk:1.12.2'
testImplementation 'io.mockk:mockk:1.13.9'

androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
Expand Down

0 comments on commit d426d06

Please sign in to comment.