Skip to content

Commit

Permalink
ASTRO-1204: Astro -support Android 14 in player playkit SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyr-bondarenko85 committed Oct 3, 2024
1 parent c7bda3d commit b23aebe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext["signingKeyId"] = System.getenv('SIGNING_KEYID')
ext["signingPassword"] = System.getenv('SIGNING_PASSWORD')

buildscript {
ext.kotlin_version = '1.7.10'
ext.kotlin_version = '1.8.0'
repositories {
google()
mavenCentral()
Expand Down
6 changes: 3 additions & 3 deletions youboraplugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
namespace 'com.kaltura.playkit.plugin.youbora'
compileSdk 34
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
defaultConfig {
minSdkVersion 21
Expand All @@ -25,7 +25,7 @@ android {
}

kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '17'
}

buildFeatures {
Expand Down
3 changes: 1 addition & 2 deletions youboraplugin/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kaltura.playkit.plugin.youbora" />
<manifest xmlns:android="http://schemas.android.com/apk/res/android" />

0 comments on commit b23aebe

Please sign in to comment.