BDAY in Android 4.3
Brought to you by:
george_h
In Android 4.3 export contacts for BDAY look: BDAY:1978-01-21T08:00:00.000Z
Thas date parse uncorrect and not error messages in console.
Please add net.sourceforge.cardme.util.ISOUtils additional mask Pattern.compile("\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z");
Anonymous
Thanks for highlighting this issue. Looks like we have to look for a decimal with three digits at the end of the time string. We'll have it integrated in the svn soon.
Committed on SVN trunk.
Could not find anything about having a .000Z at the end of an ISO8601 extended UTC time string. So I just added a regex exception just for android (\d{1,3} to be on the safe side)