Skip to content

Commit

Permalink
Merge pull request #33 from CharlesMcD/patch-2
Browse files Browse the repository at this point in the history
Fix getAttributes UnsupportedOperationException error
  • Loading branch information
asllop authored Feb 10, 2025
2 parents 89def72 + dbf1389 commit c3e029a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions NRExoPlayerTracker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 33
versionCode 5
versionName "1.0.5"
versionCode 6
versionName "1.0.6"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
4 changes: 2 additions & 2 deletions NRIMATracker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 33
versionCode 5
versionName "1.0.5"
versionCode 6
versionName "1.0.6"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
4 changes: 2 additions & 2 deletions NewRelicVideoCore/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 33
versionCode 8
versionName "1.0.5"
versionCode 9
versionName "1.0.6"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public Map<String, Object> getAttributes(String action, Map<String, Object> attr
Map<String, Object> attr;

if (attributes != null) {
attr = attributes;
attr = new HashMap<>(attributes);
} else {
attr = new HashMap<>();
}
Expand Down Expand Up @@ -888,4 +888,4 @@ private String calculateBufferType() {
// If none of the above is true, it is a connection buffering
return "connection";
}
}
}

0 comments on commit c3e029a

Please sign in to comment.