kcron-common
kcron-common copied to clipboard
Cron realization for Kotlin Multiplatform
If I have the following code in a jvm desktop module: ```kotlin import com.ucasoft.kcron.Cron import com.ucasoft.kcron.core.extensions.hours fun main() { Cron.builder().hours(1) } ``` It looks all good in the IDE but...
It resolves properly for android and jvm But on JS and Native, it says it "requires dependency" on the core module.
So, looks like for iOS packages we need different action. Please, confirm it. There aren't other problems in PR. _Originally posted by @Scogun in https://github.com/Scogun/kcron-common/issues/9#issuecomment-1522292091_
https://crontab.guru/#0_0_*/2_*_* Cron.parseAndBuild("0 0 */2 * *") crashes. Is and will step values be added to this library
## Description Hey! I experimented a bit with this library, and I have a few question/remark. When parsing an expression using `Cron.parseAndBuild` I would like to have some information about...