Skip to content

Commit

Permalink
Merge pull request #2 from StreamAMG/v_1_1_0
Browse files Browse the repository at this point in the history
Update to version 1.1.0
  • Loading branch information
StefanoStream authored Apr 19, 2022
2 parents 21fefad + d1167ca commit 9ae0906
Show file tree
Hide file tree
Showing 26 changed files with 672 additions and 263 deletions.
10 changes: 10 additions & 0 deletions PlayKitReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,11 @@ Set the colour of the VOD scrub bar 'tracked' time to a colour resouce (eg R.col
.scrubBarVODColour(colour: Int)
```
Toggle the visibility of the bitrate selector
``` Kotlin
.setBitrateSelector(isOn: Bool)
```
## Media overlays
Expand Down Expand Up @@ -594,6 +599,11 @@ PlayKit will atttempt to change bitrate to that value (or the closest one BELOW

All notable changes to this project will be documented in this section.

### 1.1.0
- Improved bitrate selector UI
- Playkit updates
- Modified analytics default url to https

### 1.0.3
- Force casting URL to return a redirected URL if required (HLS only)
- Change call to require completion
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ Change Log:

All notable changes to this project will be documented in this section.

### 1.1.0 - Improved bitrate selector UI and Playkit updates

### 1.0.3 - PlayKit HLS casting update

### 1.0.2 - PlayKit minor updates on standard control
Expand Down
20 changes: 10 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
buildscript {
ext.kotlin_version = "1.5.31"
ext.kotlin_version = '1.6.20'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
classpath 'com.android.tools.build:gradle:7.1.3'
classpath 'com.github.dcendents:android-maven-plugin:1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30"
}
Expand All @@ -15,8 +15,8 @@ plugins {
id 'maven-publish'
}
// Versions of the library modules are matched (eg 1.0 core goes with 1.0 cloudmatrix) to prevent dependency issues
ext.SDK_VERSION_CODE = 10
ext.SDK_VERSION_NAME = "1.0.3"
ext.SDK_VERSION_CODE = 11
ext.SDK_VERSION_NAME = "1.1.0"

publishing {
publications {
Expand Down Expand Up @@ -62,11 +62,11 @@ publishing {
def dependencyNode = dependenciesNode.appendNode('dependency')
dependencyNode.appendNode('groupId', 'com.kaltura.player')
dependencyNode.appendNode('artifactId', 'tvplayer')
dependencyNode.appendNode('version', '4.16.0')
dependencyNode.appendNode('version', '4.22.0')
def dependencyNode2 = dependenciesNode.appendNode('dependency')
dependencyNode2.appendNode('groupId', 'com.kaltura.playkit')
dependencyNode2.appendNode('artifactId', 'imaplugin')
dependencyNode2.appendNode('version', '4.15.0')
dependencyNode2.appendNode('version', '4.22.0')
def dependencyNode3 = dependenciesNode.appendNode('dependency')
dependencyNode3.appendNode('groupId', 'androidx.appcompat')
dependencyNode3.appendNode('artifactId', 'appcompat')
Expand All @@ -78,7 +78,7 @@ publishing {
def dependencyNode5 = dependenciesNode.appendNode('dependency')
dependencyNode5.appendNode('groupId', 'com.kaltura.playkit')
dependencyNode5.appendNode('artifactId', 'youboraplugin')
dependencyNode5.appendNode('version', '4.16.0')
dependencyNode5.appendNode('version', '4.22.0')
def dependencyNode6 = dependenciesNode.appendNode('dependency')
dependencyNode6.appendNode('groupId', 'com.squareup.retrofit2')
dependencyNode6.appendNode('artifactId', 'retrofit')
Expand All @@ -104,7 +104,7 @@ publishing {
def dependencyNode = dependenciesNode.appendNode('dependency')
dependencyNode.appendNode('groupId', 'com.kaltura.dtg')
dependencyNode.appendNode('artifactId', 'dtglib')
dependencyNode.appendNode('version', '2.6.11')
dependencyNode.appendNode('version', '2.6.15')
}
}

Expand All @@ -129,9 +129,9 @@ repositories {

ext {
// androidx_crypto_version = '1.1.0-alpha01'
appcompat_version = '1.3.0'
appcompat_version = '1.4.1'
constraintlayout_version = '2.0.4'
core_ktx_version = '1.6.0'
core_ktx_version = '1.7.0'
gson_version = '2.8.6'
lifecycle_extensions_version = '2.2.0'
okhttp_version = '4.9.0'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 9ae0906

Please sign in to comment.