kcron-common icon indicating copy to clipboard operation
kcron-common copied to clipboard

Cron realization for Kotlin Multiplatform

Results 5 kcron-common issues
Sort by recently updated
recently updated
newest added

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...

bug

It resolves properly for android and jvm But on JS and Native, it says it "requires dependency" on the core module.

bug

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_

enhancement
help wanted

https://crontab.guru/#0_0_*/2_*_* Cron.parseAndBuild("0 0 */2 * *") crashes. Is and will step values be added to this library

bug

## 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...

question