Skip to content

Commit f0bbd4b

Browse files
authored
Releases/v1.4.10 (#83)
## Fixes * fix: Incorrect minified keys for `viewer_client_application_name` and `viewer_client_application_version` ## Improvements * Make MuxCore updateable independently (but player SDKs must explicitly declare their Core version)
1 parent 81ea56e commit f0bbd4b

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@ This SDK is meant to be a base for other Mux Data SDKs for Android
88

99
## Usage
1010

11-
Add the dependency to your SDK.
11+
Add this library and the Java Core to your SDK
1212

1313
```groovy
14+
// this library
1415
api 'com.mux.stats.sdk.muxstats:android:1.2.0'
16+
// You *must* specify an exact version of MuxCore in your player integration
17+
api 'com.mux:stats.muxcore:8.4.1'
1518
```
1619

1720
Implement `PlayerBinding<>` to listen for changes from your Player

app/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ android {
3535
dependencies {
3636

3737
project(":library")
38+
// dynamic version so the player SDKs on top of this can update core independently
39+
//noinspection GradleDynamicVersion
40+
implementation("com.mux:stats.muxcore:8.+")
3841

3942
implementation("androidx.core:core-ktx:1.15.0")
4043
implementation("androidx.appcompat:appcompat:1.7.0")

library/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,11 @@ muxDistribution {
7676
dependencies {
7777
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1"
7878

79-
api "com.mux:stats.muxcore:8.4.0"
79+
// dynamic version/compileOnly so the player SDKs on top of this can update core independently
80+
//noinspection GradleDynamicVersion
81+
compileOnly "com.mux:stats.muxcore:8.+"
82+
//noinspection GradleDynamicVersion
83+
testImplementation "com.mux:stats.muxcore:8.+"
8084

8185
testImplementation 'androidx.test.ext:junit-ktx:1.2.1'
8286
testImplementation 'junit:junit:4.13.2'

0 commit comments

Comments
 (0)