Skip to content

Commit ff788fc

Browse files
authored
Fix "Method exceeds compiler instruction limit" in fhir utilities (#1820)
1 parent e3dc69f commit ff788fc

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

android/engine/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,12 @@ android {
9494
}
9595
}
9696
}
97+
98+
configurations.all {
99+
resolutionStrategy {
100+
force "ca.uhn.hapi.fhir:org.hl7.fhir.utilities:5.5.7"
101+
}
102+
}
97103
}
98104

99105
dependencies {

android/quest/build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,13 @@ android {
160160
versionName "0.0.1"
161161
}
162162
}
163+
164+
configurations.all {
165+
resolutionStrategy {
166+
force "ca.uhn.hapi.fhir:org.hl7.fhir.utilities:5.5.7"
167+
}
168+
}
169+
163170
}
164171

165172
dependencies {

android/settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
rootProject.name = "fhircore-android"
2-
include ':anc'
3-
include ':eir'
2+
//include ':anc'
3+
//include ':eir'
44
include ':engine'
55

66
include ':quest'

0 commit comments

Comments
 (0)