Skip to content

Commit

Permalink
chore(dependencies): upgrade to Kotlin 1.9.22
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Apr 9, 2024
1 parent a8c279b commit 699bed1
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ buildscript {
versionCode = 001_007_000
versionName = "1.7.0"

kotlin_version = '1.8.22'
dokka_version = '1.8.20'
kotlin_version = '1.9.22'
dokka_version = '1.9.20'
}
repositories {
google()
Expand Down
4 changes: 2 additions & 2 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ dependencies {
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.preference:preference-ktx:1.2.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.3'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.3'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.7'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.7'
implementation 'com.google.guava:guava:32.1.2-jre'

testImplementation 'junit:junit:4.13.2'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class RecvFile(
private val recvFileDir: File,
executorService: ExecutorService,
onSuccess: (String) -> Unit,
onError: (String?) -> Unit
onError: (String) -> Unit
) : Test(executorService, onSuccess, onError) {
companion object {
private val TAG = RecvFile::class.simpleName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class SendFile(
private val fileSendDir: File,
executorService: ExecutorService,
onSuccess: (String) -> Unit,
onError: (String?) -> Unit
onError: (String) -> Unit
) : Test(executorService, onSuccess, onError) {
companion object {
private val TAG = SendFile::class.simpleName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import java.util.concurrent.ExecutorService
abstract class Test(
private val executor: ExecutorService,
protected val onSuccess: (String) -> Unit,
protected val onError: (String?) -> Unit
protected val onError: (String) -> Unit
) {
protected abstract val testName: String
private var socket: Socket? = null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import java.util.concurrent.ExecutorService
class TestClient(
executorService: ExecutorService,
onSuccess: (String) -> Unit,
onError: (String?) -> Unit
onError: (String) -> Unit
) : Test(executorService, onSuccess, onError) {
companion object {
private val TAG = TestClient::class.simpleName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import java.util.concurrent.ExecutorService
class TestServer(
executorService: ExecutorService,
onSuccess: (String) -> Unit,
onError: (String?) -> Unit
onError: (String) -> Unit
) : Test(executorService, onSuccess, onError) {
companion object {
private val TAG = TestServer::class.simpleName
Expand Down

0 comments on commit 699bed1

Please sign in to comment.