Skip to content

Releases/v1.3.0 #73

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading