I have downloaded the Joda jar and have imported 'org.joda.time.LocalDate' in my class. I have to get the current date and store it in the datastore.
LocalDate localdate = new LocalDate();
When i am trying to store the value in the datastore, I am getting error as
"date: org.joda.time.LocalDate is not a supported property type."
How do i resolve this? Thanks in advance...