Skip to content

Commit

Permalink
Fix documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiasBuelens committed Jun 29, 2023
1 parent 8dd7be7 commit 9f3dbbe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
dependencies {
- implementation "com.theoplayer.theoplayer-sdk-android:unified:+"
+ implementation "com.theoplayer.theoplayer-sdk-android:core:5.+"
implementation "com.theoplayer.android-ui:android-ui:+"
implementation "com.theoplayer.android-ui:android-ui:1.+"
}
```
* 🚀 Added a `UIController` overload which accepts a `THEOplayerView` directly.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ THEOplayer Android SDK version 4.x comes with a built-in UI based on [video.js](
url = uri("https://maven.pkg.github.com/THEOplayer/android-ui")
credentials {
// Define gpr.user and gpr.key preferably in your local ~/.gradle/gradle.properties
username = (settings.extra.has("gpr.user")) ? settings.extra["gpr.user"] : System.getenv("USERNAME")
password = (settings.extra.has("gpr.key")) ? settings.extra["gpr.key"] : System.getenv("TOKEN")
username = (settings.ext.has("gpr.user")) ? settings.ext["gpr.user"] : System.getenv("USERNAME")
password = (settings.ext.has("gpr.key")) ? settings.ext["gpr.key"] : System.getenv("TOKEN")
}
}
}
Expand All @@ -50,7 +50,7 @@ THEOplayer Android SDK version 4.x comes with a built-in UI based on [video.js](
```groovy
dependencies {
implementation "com.theoplayer.theoplayer-sdk-android:core:5.+"
implementation "com.theoplayer.android-ui:android-ui:+"
implementation "com.theoplayer.android-ui:android-ui:1.+"
}
```
Expand Down

0 comments on commit 9f3dbbe

Please sign in to comment.