Skip to content

Commit

Permalink
Merge branch 'fix/logging-in-core' into releases/v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
daytime-em committed Oct 2, 2024
2 parents 87e828b + 4bf8bb8 commit 98a4805
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import org.jetbrains.dokka.gradle.DokkaTaskPartial
plugins {
id 'com.android.application' version '8.5.2' apply false
id 'com.android.library' version '8.5.2' apply false
id 'com.android.application' version '8.6.0' apply false
id 'com.android.library' version '8.6.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.24' apply false
id 'com.mux.gradle.android.mux-android-distribution' version '1.3.0' apply false
id "org.jetbrains.dokka" version "1.6.10"
}

allprojects {
project.ext {
coreVersion = '1.4.0'
coreVersion = '1.4.1'
}

tasks.withType(DokkaTaskPartial.class) {
Expand Down
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 @@
#Fri Nov 18 08:57:39 PST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import com.mux.stats.sdk.core.events.EventBus
import com.mux.stats.sdk.core.events.playback.AdEvent
import com.mux.stats.sdk.core.model.CustomerData
import com.mux.stats.sdk.core.model.CustomerVideoData
import com.mux.stats.sdk.core.util.MuxLogger
import com.mux.stats.sdk.muxstats.media3.BuildConfig
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
Expand Down Expand Up @@ -61,6 +62,7 @@ class MuxStatsSdkMedia3<P : Player> @OptIn(UnstableApi::class) @JvmOverloads con
),
makeNetworkRequest = { iDevice -> network ?: MuxNetwork(iDevice, CoroutineScope(Dispatchers.IO)) }
) {

/**
* Collects events related to ad playback and reports them. If you are using Google IMA, you don't
* need to interact with this class directly. Instead, use the `media3-ima` library provided by
Expand Down

0 comments on commit 98a4805

Please sign in to comment.