From e8bec21926c3d3732839edb41eab464cb3bf4556 Mon Sep 17 00:00:00 2001 From: Gowreesh-A-M Date: Thu, 26 Jun 2025 16:00:03 +0530 Subject: [PATCH] build: upgrade dependencies --- android/build.gradle | 2 +- android/gradle.properties | 2 +- example/android/build.gradle | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index cb35b07..975d0ba 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -82,7 +82,7 @@ def kotlin_version = getExtOrDefault("kotlinVersion") dependencies { implementation "com.facebook.react:react-android" implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" - implementation 'com.github.testpress:TPStreamsAndroidPlayer:1.0.1' + implementation 'com.github.testpress:TPStreamsAndroidPlayer:1.0.2' } react { diff --git a/android/gradle.properties b/android/gradle.properties index c0ede70..4f536d7 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1,4 +1,4 @@ -Tpstreams_kotlinVersion=2.0.21 +Tpstreams_kotlinVersion=2.2.0 Tpstreams_minSdkVersion=24 Tpstreams_targetSdkVersion=34 Tpstreams_compileSdkVersion=35 diff --git a/example/android/build.gradle b/example/android/build.gradle index 95f233a..7b4e2cf 100644 --- a/example/android/build.gradle +++ b/example/android/build.gradle @@ -5,7 +5,7 @@ buildscript { compileSdkVersion = 35 targetSdkVersion = 35 ndkVersion = "27.0.12077973" - kotlinVersion = "2.0.21" + kotlinVersion = "2.2.0" } repositories { google() @@ -14,7 +14,7 @@ buildscript { dependencies { classpath("com.android.tools.build:gradle") classpath("com.facebook.react:react-native-gradle-plugin") - classpath("org.jetbrains.kotlin:kotlin-gradle-plugin") + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}") } }