Skip to content

Commit 088d2d8

Browse files
daytime-emEverydayPineappleweb-flow
authored
Releases/v1.3.0 (#73)
## Improvements * chore(dependencies): Update Media3 to 1.5.0 (#72) Co-authored-by: Ryan McClarnon <[email protected]> Co-authored-by: GitHub <[email protected]>
1 parent b71af78 commit 088d2d8

File tree

5 files changed

+14
-15
lines changed

5 files changed

+14
-15
lines changed

app/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ plugins {
55

66
android {
77
namespace = "com.mux.player.media3"
8-
compileSdk = 34
8+
compileSdk = 35
99

1010
defaultConfig {
1111
minSdk = 21
12-
targetSdk = 34
12+
targetSdk = 35
1313
versionCode = 1
1414
versionName = "1.0"
1515

automatedtests/build.gradle

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ apply plugin: 'com.android.application'
33

44
android {
55
namespace = "com.mux.player.media3"
6-
compileSdkVersion 34
6+
compileSdk 35
77

88
defaultConfig {
99
applicationId "com.mux.player.media3"
1010
minSdkVersion 21
11-
// Target SDK 31 causes manifest merger errors. One of our dependencies is not setting
12-
// `android:exported` for an Activity. Error logs have no more useful information
13-
targetSdkVersion 34 //project.ext.targetSdkVersion
11+
//noinspection EditedTargetSdkVersion
12+
targetSdk 35
1413
versionCode 1
1514
versionName "1.0"
1615
multiDexEnabled true

build.gradle.kts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
plugins {
2-
id("com.android.application") version "8.7.2" apply false
2+
id("com.android.application") version "8.7.3" apply false
33
id("org.jetbrains.kotlin.android") version "2.0.21" apply false
4-
id("com.android.library") version "8.7.2" apply false
4+
id("com.android.library") version "8.7.3" apply false
55
id("com.mux.gradle.android.mux-android-distribution") version "1.3.0" apply false
66
}
77

88
allprojects {
99
ext {
10-
set("muxDataVersion", "1.6.0")
10+
set("muxDataVersion", "1.6.2")
1111
}
12-
}
12+
}

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

library/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ plugins {
77

88
android {
99
namespace 'com.mux.player'
10-
compileSdk 34
10+
compileSdk 35
1111

1212
defaultConfig {
1313
minSdk 21
1414
//noinspection EditedTargetSdkVersion
15-
targetSdk 34
15+
targetSdk 35
1616

1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
consumerProguardFiles "consumer-rules.pro"
@@ -77,8 +77,8 @@ muxDistribution {
7777

7878
dependencies {
7979

80-
def media3Version = "1.4.1"
81-
def media3DataSdk = "at_1_4"
80+
def media3Version = "1.5.0"
81+
def media3DataSdk = "at_1_5"
8282
api "androidx.media3:media3-common:${media3Version}"
8383
api "androidx.media3:media3-exoplayer:${media3Version}"
8484
api "androidx.media3:media3-ui:${media3Version}"

0 commit comments

Comments
 (0)