The basic authentication script in line 90 given below causes a build fail due to the ambiguity in java.util.Base64 and org.rsna.util.Base64
|
this.authHeader = "Basic " + Base64.encodeToString((username + ":" + password).getBytes()); |
Fixed code On line 90:
this.authHeader = "Basic " + org.rsna.util.Base64.encodeToString((username + ":" + password).getBytes());