in build-tools/src/main/java/co/elastic/otel/android/compilation/tools/tasks/CreateNoticeTask.java [150:160]
private void addLicenses(OutputStream outputStream, List<String> licenseIds) throws IOException {
boolean firstIteration = true;
for (String licenseId : licenseIds) {
if (!firstIteration) {
addLicenseSeparator(outputStream);
} else {
firstIteration = false;
}
addToOutputStreamAndCloseInput(outputStream, getResourceInputStream("/licenses/" + licenseId));
}
}