in src/main/java/com/microsoft/appcenter/appium/ShortIdentifier.java [50:60]
private String filenameSafeHash(String input) {
try {
byte[] shortened = shortenHash(calcSha1(input), 64);
char[] radix61 = new BigInteger(shortened).abs().toString(Character.MAX_RADIX).toCharArray();
return new String(radix61);
// return new BigInteger(shortened).abs().toString(39);
} catch (NoSuchAlgorithmException e) {
throw new RuntimeException(e);
}
}