Skip to content

Commit cf3815e

Browse files
authored
Merge pull request #147 from duongphuhiep/VideoPlayerStateInterface
Video player state interface
2 parents e6bf67a + fe8b7ea commit cf3815e

28 files changed

Lines changed: 685 additions & 689 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
alias(libs.plugins.multiplatform).apply(false)
33
alias(libs.plugins.android.library).apply(false)
44
alias(libs.plugins.android.application).apply(false)
5-
alias(libs.plugins.kotlinCocoapods) apply false
5+
alias(libs.plugins.kotlinCocoapods).apply(false)
66
alias(libs.plugins.dokka).apply(false)
77
alias(libs.plugins.vannitktech.maven.publish).apply(false)
88
}

gradle/libs.versions.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ filekit = "0.12.0"
66
gst1JavaCore = "1.4.0"
77
kermit = "2.0.8"
88
kotlin = "2.3.0"
9-
agp = "8.12.3"
9+
agp = "8.13.2"
1010
kotlinx-coroutines = "1.10.2"
1111
kotlinxBrowserWasmJs = "0.5.0"
1212
kotlinxDatetime = "0.7.1-0.6.x-compat"
@@ -18,6 +18,8 @@ jna = "5.18.1"
1818
platformtoolsDarkmodedetector = "0.7.4"
1919
slf4jSimple = "2.0.17"
2020

21+
# minSdk = 21 failed to compile because the project indirectly depends on the library [androidx.navigationevent:navigationevent-android:1.0.1] which requires minSdk = 23
22+
android-minSdk="23"
2123

2224
[libraries]
2325

mediaplayer/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ android {
148148
compileSdk = 36
149149

150150
defaultConfig {
151-
minSdk = 23
151+
minSdk = libs.versions.android.minSdk.get().toInt()
152152
}
153153
}
154154

0 commit comments

Comments
 (0)