Skip to content

Commit

Permalink
fix: add core library desugaring and update ci workflow to run instru…
Browse files Browse the repository at this point in the history
…mentation test on `minSdk`
  • Loading branch information
aanorbel committed Jul 22, 2024
1 parent e42dc11 commit 9a9b7f4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ jobs:

strategy:
matrix:
api-level: [ 29 ]
target: [ google_apis ]
api-level: [25, 29] # Bug in API 21-24
target: [default, google_apis]

steps:
- name: Set up JDK 17
Expand Down
4 changes: 4 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
coreLibraryDesugaringEnabled = true
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_17
Expand All @@ -125,6 +126,9 @@ android {
dependencies {
implementation project(path: ':engine')

// Desugaring
coreLibraryDesugaring(libs.desugar.jdk.libs.nio)

// AndroidX
implementation libs.androidx.appcompat
implementation libs.androidx.constraintlayout
Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
androidGradlePlugin = "8.5.1"
barista = "3.9.0"
countlySdk = "24.7.0"
desugar_jdk_libs_nio = "2.0.4"
faker = "2.0.4"
mockito = "5.12.0"
robolectric = "4.13"
Expand Down Expand Up @@ -55,6 +56,7 @@ gms-googleServices = "4.4.1"
android-gradlePlugin = { group = "com.android.tools.build", name = "gradle", version.ref = "androidGradlePlugin" }
barista = { module = "com.schibsted.spain:barista", version.ref = "barista" }
countly-sdk = { module = "ly.count.android:sdk", version.ref = "countlySdk" }
desugar_jdk_libs_nio = { module = "com.android.tools:desugar_jdk_libs_nio", version.ref = "desugar_jdk_libs_nio" }
faker = { module = "com.github.blocoio:faker", version.ref = "faker" }
robolectric = { module = "org.robolectric:robolectric", version.ref = "robolectric" }
fastlane-screengrab = { module = "tools.fastlane:screengrab", version.ref = "fastlaneScreengrab" }
Expand Down

0 comments on commit 9a9b7f4

Please sign in to comment.