Skip to content

Commit

Permalink
Upgrade compile options, mockk and robolectric versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Rkareko committed Aug 19, 2024
1 parent 368823f commit f425ee8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions deps.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ versions.core = '1.3.0'
versions.junit5_api = '5.7.1'
versions.junit5_plugin = '1.7.1.1'
versions.ktlint = '0.41.0'
versions.mockk = '1.11.0'
versions.robolectric = '4.8'
versions.mockk = '1.13.8'
versions.robolectric = '4.10.3'
versions.timber = '4.7.1'
versions.room = '2.3.0'
versions.spotless = '5.11.0'
Expand Down
6 changes: 3 additions & 3 deletions p2p-lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '1.8'
jvmTarget = JavaVersion.VERSION_17.toString()
}
buildFeatures {
compose true
Expand Down

0 comments on commit f425ee8

Please sign in to comment.