File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 71
71
72
72
strategy :
73
73
matrix :
74
- api-level : [ 29 ]
75
- target : [ google_apis ]
74
+ api-level : [25, 29] # Bug in API 21-24
75
+ target : [default, google_apis]
76
76
77
77
steps :
78
78
- name : Set up JDK 17
Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ android {
111
111
compileOptions {
112
112
sourceCompatibility JavaVersion . VERSION_17
113
113
targetCompatibility JavaVersion . VERSION_17
114
+ coreLibraryDesugaringEnabled = true
114
115
}
115
116
kotlinOptions {
116
117
jvmTarget = JavaVersion . VERSION_17
@@ -125,6 +126,9 @@ android {
125
126
dependencies {
126
127
implementation project(path : ' :engine' )
127
128
129
+ // Desugaring
130
+ coreLibraryDesugaring(libs. desugar. jdk. libs. nio)
131
+
128
132
// AndroidX
129
133
implementation libs. androidx. appcompat
130
134
implementation libs. androidx. constraintlayout
Original file line number Diff line number Diff line change 2
2
androidGradlePlugin = " 8.5.1"
3
3
barista = " 3.9.0"
4
4
countlySdk = " 24.7.0"
5
+ desugar_jdk_libs_nio = " 2.0.4"
5
6
faker = " 2.0.4"
6
7
mockito = " 5.12.0"
7
8
robolectric = " 4.13"
@@ -55,6 +56,7 @@ gms-googleServices = "4.4.1"
55
56
android-gradlePlugin = { group = " com.android.tools.build" , name = " gradle" , version.ref = " androidGradlePlugin" }
56
57
barista = { module = " com.schibsted.spain:barista" , version.ref = " barista" }
57
58
countly-sdk = { module = " ly.count.android:sdk" , version.ref = " countlySdk" }
59
+ desugar_jdk_libs_nio = { module = " com.android.tools:desugar_jdk_libs_nio" , version.ref = " desugar_jdk_libs_nio" }
58
60
faker = { module = " com.github.blocoio:faker" , version.ref = " faker" }
59
61
robolectric = { module = " org.robolectric:robolectric" , version.ref = " robolectric" }
60
62
fastlane-screengrab = { module = " tools.fastlane:screengrab" , version.ref = " fastlaneScreengrab" }
You can’t perform that action at this time.
0 commit comments