You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Android's boot classpath overrides Apache Commons Codec with an older version than the 1.15 referenced by this project. Google doesn't seem to be enticed to fix this. The available class is here
There are two possible solutions:
Use java.util.Base64 (added in Java 8 to replace the need for Apache Commons Codec)
Use the old Base64.isArrayByteBase64(toCheck.getBytes()) method
Which one is preferred?
The text was updated successfully, but these errors were encountered:
* Migrating CQL Evaluator and its dependencies to 2.4 to fix#1733
* Evaluator 2.4's generate care plan returns an IBaseResource to prepare for R5.
* Migrates to evaluator 2.4
* Removes outdated antlr dependency fix of 2.4
* Forces Jackson 2.14.1 due to a dependency bug when using Gradle and the 2.13.4.1 version FasterXML/jackson-databind#3627
* Forces Jackson 2.14.1 due to a dependency bug when using Gradle and the 2.13.4.1 version FasterXML/jackson-databind#3627
* Fixing tests to match CQL-Evaluator's tests
* Spotless apply
* Force version of caffeine
* Forces HAPI and FHIR CORE to earlier versions due to hapifhir/org.hl7.fhir.core#1046
* deleting non existant r4b
* Fixing imports of the Benchmark module
* Moving common blocks to Dependencies.
* spotless apply
The new check for Base64 strings is not available on Android:
org.hl7.fhir.core/org.hl7.fhir.dstu2/src/main/java/org/hl7/fhir/dstu2/model/Base64BinaryType.java
Line 102 in b67d917
This is similar to hapifhir/hapi-fhir#1441
Android's boot classpath overrides Apache Commons Codec with an older version than the 1.15 referenced by this project. Google doesn't seem to be enticed to fix this. The available class is here
There are two possible solutions:
java.util.Base64
(added in Java 8 to replace the need for Apache Commons Codec)Base64.isArrayByteBase64(toCheck.getBytes())
methodWhich one is preferred?
The text was updated successfully, but these errors were encountered: