Skip to content

Commit 7919249

Browse files
committed
Drops com.android.tools:desugar_jdk_libs
Suspecting that it's the cause of a frequent CI failure building `samples:dungeon:common:compileKotlin`: ``` Caused by: org.gradle.api.GradleException: Could not read directory path '/Users/runner/work/workflow-kotlin/workflow-kotlin/samples/dungeon/common/build/kotlin/compileKotlin/caches-jvm/inputs'. ``` At any rate, it's the only interesting thing about that build, and doesn't appear to be necessary any longer.
1 parent 95139f9 commit 7919249

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

buildSrc/src/main/java/Dependencies.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ object Dependencies {
5252
const val cycler = "com.squareup.cycler:cycler:0.1.9"
5353

5454
// Required for Dungeon Crawler sample.
55-
const val desugar_jdk_libs = "com.android.tools:desugar_jdk_libs:1.1.5"
5655
const val leakcanary = "com.squareup.leakcanary:leakcanary-android:2.8.1"
5756
const val radiography = "com.squareup.radiography:radiography:2.4.0"
5857
const val rxandroid2 = "io.reactivex.rxjava2:rxandroid:2.1.1"

samples/dungeon/app/build.gradle.kts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,9 @@ android {
1313

1414
testInstrumentationRunner = "com.squareup.sample.dungeon.DungeonTestRunner"
1515
}
16-
17-
compileOptions {
18-
// Required for SnakeYAML.
19-
isCoreLibraryDesugaringEnabled = true
20-
}
2116
}
2217

2318
dependencies {
24-
// Required for SnakeYAML.
25-
"coreLibraryDesugaring"(Dependencies.desugar_jdk_libs)
26-
2719
debugImplementation(Dependencies.leakcanary)
2820

2921
implementation(project(":samples:dungeon:common"))

0 commit comments

Comments
 (0)