Skip to content

Commit

Permalink
[android][volley] Remove unused robolectric test dependency (#19022)
Browse files Browse the repository at this point in the history
Causes failures like:
Configuration `:debugUnitTestRuntimeClasspath` contains AndroidX dependencies, but the `android.useAndroidX` property is not enabled, which may cause runtime issues.
  • Loading branch information
valpackett committed Jun 27, 2024
1 parent 9c26848 commit 44e9ff5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ ext {
httpmime_version = "4.5.14"
volley_version = "1.2.1"
junit_version = "4.13.2"
robolectric_version = "4.5.1"
concurrent_unit_version = "0.4.6"
}

dependencies {
Expand All @@ -73,8 +71,6 @@ dependencies {
}
implementation "com.android.volley:volley:${volley_version}"
testImplementation "junit:junit:$junit_version"
testImplementation "org.robolectric:robolectric:${robolectric_version}"
testImplementation "net.jodah:concurrentunit:${concurrent_unit_version}"
}

publishing {
Expand Down
4 changes: 0 additions & 4 deletions samples/client/petstore/android/volley/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ ext {
httpmime_version = "4.5.14"
volley_version = "1.2.1"
junit_version = "4.13.2"
robolectric_version = "4.5.1"
concurrent_unit_version = "0.4.6"
}

dependencies {
Expand All @@ -53,8 +51,6 @@ dependencies {
}
implementation "com.android.volley:volley:${volley_version}"
testImplementation "junit:junit:$junit_version"
testImplementation "org.robolectric:robolectric:${robolectric_version}"
testImplementation "net.jodah:concurrentunit:${concurrent_unit_version}"
}

publishing {
Expand Down

0 comments on commit 44e9ff5

Please sign in to comment.