Skip to content

Commit 7a085cc

Browse files
Merge pull request #80 from THEOplayer/release/1.13.1
Release 1.13.1
2 parents 7e378d7 + 448b898 commit 7a085cc

12 files changed

Lines changed: 67 additions & 31 deletions

File tree

.idea/AndroidProjectSystem.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
> - 🏠 Internal
1010
> - 💅 Polish
1111
12+
## v1.13.1 (2026-01-05)
13+
14+
* 🐛 Changed THEOplayer to be an `api` dependency in Gradle. ([#76](https://github.com/THEOplayer/android-ui/pull/76))
15+
* 🐛 The alpha value of the `UIController`'s background color is now correctly preserved. ([#78](https://github.com/THEOplayer/android-ui/issues/78), [#79](https://github.com/THEOplayer/android-ui/pull/79))
16+
1217
## v1.13.0 (2025-09-12)
1318

1419
* 💥 The `minSdk` is now API 23 (Android 6.0 "Marshmallow"), to align with THEOplayer 10.0. ([#74](https://github.com/THEOplayer/android-ui/pull/74))

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ android {
3333
)
3434
}
3535
// Build type that uses the latest android-ui from Maven
36-
create("maven") {
36+
register("maven") {
3737
initWith(getByName("debug"))
3838
matchingFallbacks += listOf("debug")
3939
}

buildSrc/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

buildSrc/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
plugins {
2+
`kotlin-dsl`
3+
}
4+
5+
repositories {
6+
gradlePluginPortal() // so that external plugins can be resolved in dependencies section
7+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
plugins {
2+
`maven-publish`
3+
}
4+
5+
publishing {
6+
repositories {
7+
maven {
8+
name = "reposilite"
9+
url = uri("https://maven.theoplayer.com/releases")
10+
credentials {
11+
username = System.getenv("REPOSILITE_USERNAME")
12+
password = System.getenv("REPOSILITE_PASSWORD")
13+
}
14+
}
15+
maven {
16+
name = "GitHubPackages"
17+
url = uri("https://maven.pkg.github.com/THEOplayer/android-ui")
18+
credentials {
19+
username = System.getenv("GITHUB_ACTOR")
20+
password = System.getenv("GITHUB_TOKEN")
21+
}
22+
}
23+
}
24+
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ org.gradle.configuration-cache=true
2727
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
2828
org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true
2929
# The version of the THEOplayer Open Video UI for Android.
30-
version=1.13.0
30+
version=1.13.1

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ androidx-junit = "1.3.0"
1616
androidx-espresso = "3.7.0"
1717
androidx-mediarouter = "1.8.1"
1818
dokka = "2.0.0"
19-
theoplayer = { prefer="9.2.0", strictly = "[5.0, 11.0)" }
19+
theoplayer = { prefer="10.0.0", strictly = "[5.0, 11.0)" }
2020

2121
[libraries]
2222
androidx-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "ktx" }

0 commit comments

Comments
 (0)