Skip to content

Commit

Permalink
Releases/v1.3.0 (#73)
Browse files Browse the repository at this point in the history
## Improvements

* chore(dependencies): Update Media3 to 1.5.0 (#72)



Co-authored-by: Ryan McClarnon <[email protected]>
Co-authored-by: GitHub <[email protected]>
  • Loading branch information
3 people authored Dec 17, 2024
1 parent b71af78 commit 088d2d8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 15 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ plugins {

android {
namespace = "com.mux.player.media3"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 21
targetSdk = 34
targetSdk = 35
versionCode = 1
versionName = "1.0"

Expand Down
7 changes: 3 additions & 4 deletions automatedtests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ apply plugin: 'com.android.application'

android {
namespace = "com.mux.player.media3"
compileSdkVersion 34
compileSdk 35

defaultConfig {
applicationId "com.mux.player.media3"
minSdkVersion 21
// Target SDK 31 causes manifest merger errors. One of our dependencies is not setting
// `android:exported` for an Activity. Error logs have no more useful information
targetSdkVersion 34 //project.ext.targetSdkVersion
//noinspection EditedTargetSdkVersion
targetSdk 35
versionCode 1
versionName "1.0"
multiDexEnabled true
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
plugins {
id("com.android.application") version "8.7.2" apply false
id("com.android.application") version "8.7.3" apply false
id("org.jetbrains.kotlin.android") version "2.0.21" apply false
id("com.android.library") version "8.7.2" apply false
id("com.android.library") version "8.7.3" apply false
id("com.mux.gradle.android.mux-android-distribution") version "1.3.0" apply false
}

allprojects {
ext {
set("muxDataVersion", "1.6.0")
set("muxDataVersion", "1.6.2")
}
}
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
8 changes: 4 additions & 4 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ plugins {

android {
namespace 'com.mux.player'
compileSdk 34
compileSdk 35

defaultConfig {
minSdk 21
//noinspection EditedTargetSdkVersion
targetSdk 34
targetSdk 35

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down Expand Up @@ -77,8 +77,8 @@ muxDistribution {

dependencies {

def media3Version = "1.4.1"
def media3DataSdk = "at_1_4"
def media3Version = "1.5.0"
def media3DataSdk = "at_1_5"
api "androidx.media3:media3-common:${media3Version}"
api "androidx.media3:media3-exoplayer:${media3Version}"
api "androidx.media3:media3-ui:${media3Version}"
Expand Down

0 comments on commit 088d2d8

Please sign in to comment.