Skip to content

Commit

Permalink
Merge pull request #7 from bitmovin/feature/exoplayer-version-constraint
Browse files Browse the repository at this point in the history
Feature/exoplayer version constraint
  • Loading branch information
rolandgriesser authored Mar 12, 2021
2 parents 4553196 + 1eb4ace commit 0889507
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Development

## v1.22.1

### Fixed

- Added upper exclusive bound of 2.12.0 for ExoPlayer dependency

## v1.22.0

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ For Bitmovin Player:

```
dependencies {
implementation 'com.bitmovin.analytics:collector-bitmovin-player:1.22.0'
implementation 'com.bitmovin.analytics:collector-bitmovin-player:1.22.1'
}
```
Expand All @@ -31,7 +31,7 @@ For ExoPlayer:

```
dependencies {
implementation 'com.bitmovin.analytics:collector-exoplayer:1.22.0'
implementation 'com.bitmovin.analytics:collector-exoplayer:1.22.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ ext {
developLocal = System.getProperty("developLocal", "true").toBoolean()
versionNameSuffix = developLocal ? '-local' : ''
packageGroupId = 'com.bitmovin.analytics'
version = '1.22.0' + versionNameSuffix
versionCode = 122001
version = '1.22.1' + versionNameSuffix
versionCode = 122002

compileSdkVersion = 28
minSdkVersion = 16
Expand Down
6 changes: 5 additions & 1 deletion collector-exoplayer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ dependencies {
} else {
api "com.bitmovin.analytics:collector:${rootProject.ext.version}"
}
implementation "com.google.android.exoplayer:exoplayer:${rootProject.ext.exoplayerVersion}"
implementation("com.google.android.exoplayer:exoplayer") {
version {
strictly "[${rootProject.ext.exoplayerVersion}, 2.12.0)"
}
}
}

publishing {
Expand Down

0 comments on commit 0889507

Please sign in to comment.