Skip to content

Commit

Permalink
Fix robolectric tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yschimke committed Jan 4, 2025
1 parent 3511e1a commit 123a0e6
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions android-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
val androidBuild = property("androidBuild").toString().toBoolean()

android {
compileSdk = 34
compileSdk = 35

namespace = "okhttp.android.test"

Expand All @@ -35,16 +35,16 @@ android {
}

compileOptions {
targetCompatibility(JavaVersion.VERSION_11)
sourceCompatibility(JavaVersion.VERSION_11)
targetCompatibility(JavaVersion.VERSION_17)
sourceCompatibility(JavaVersion.VERSION_17)
}

testOptions {
targetSdk = 34
targetSdk = 35
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
jvmTarget = JavaVersion.VERSION_17.toString()
}

// issue merging due to conflict with httpclient and something else
Expand Down

0 comments on commit 123a0e6

Please sign in to comment.