leandro
01/19/2021, 4:07 PMmyInstant
.toLocalDateTime(TimeZone.currentSystemDefault())
.date.plus(DateTimeUnit.DateBased.MonthBased(1)).atStartOfDayIn(TimeZone.currentSystemDefault()),
Edit:
Solved, went with
.plus(DateTimePeriod(months = 1), TimeZone.currentSystemDefault())
Marc Knaup
01/19/2021, 8:38 PM.plus(1, DateTimeUnit.MONTH)