I have fromDate
and toDate
two milliseconds and I want to get all epoch milliseconds between these two date in weekly intervals.
`
val date1 = new Date(1668940033492L)
val calendar = Calendar.getInstance()
calendar.setTime(date1)
calendar.add(Calendar.WEEK_OF_YEAR, 1)
`
From above code I can add week to fromDate
but how will I get it till to Date and all the intervals in between.