Skip to content

Commit f80a44e

Browse files
committed
Merge branch 'main' into rick/libs_versions_toml
* main: Drops com.android.tools:desugar_jdk_libs Drops AVD 21, bumps 27 to 29 # Conflicts: # buildSrc/src/main/java/Dependencies.kt # samples/dungeon/app/build.gradle.kts
2 parents 2f0a7dc + 76b488e commit f80a44e

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

.github/workflows/kotlin.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,9 @@ jobs:
6363
fail-fast: false
6464
matrix:
6565
api-level:
66-
- 21
67-
- 24
66+
- 29
67+
# Unclear that older versions actually honor command to disable animation.
68+
# Newer versions are reputed to be too slow: https://github.com/ReactiveCircus/android-emulator-runner/issues/222
6869
steps:
6970
- uses: actions/checkout@v2
7071
- name: set up JDK 11.0.7

gradle/libs.versions.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlint" }
8888
mavenPublish = { id = "com.vanniktech.maven.publish", version.ref = "vanniktech-publish" }
8989

9090
[libraries]
91-
android-desugar = "com.android.tools:desugar_jdk_libs:1.1.5"
9291

9392
android-gradle-plugin = { module = "com.android.tools.build:gradle", version.ref = "androidTools" }
9493

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"(libs.android.desugar)
26-
2719
debugImplementation(libs.squareup.leakcanary.android)
2820

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

0 commit comments

Comments
 (0)