we have used this code to get the IANA tz version.
public static String getTimezoneDatabaseIANAVersion() {
File readmeFile = new File(ZONEINFO_PATH, "README");
File alternativeReadmeFile = new File(ZONEINFO_PATH, "README.txt");
if (!readmeFile.exists()) {
readmeFile = alternativeReadmeFile;
}
out read me.txt file contain
generated by Gradle
Based on
http://www.iana.org/time-zones/repository/releases/tzdata2020a.tar.gzmeans we are using correct tzdata2020a.
But still why there is issue? Something wrong with tz db??
regards,
sundar