Install
| Canard uses the new gradle native dependency model. Thus, we highly recommend to use Gradle 6 or higher. | 
Kotlin/Multiplatform
| 
Canard supports the following targets: jvm, iosArm32, iosArm64, iosX64, JS, tvosarm64, tvosx64, watchosarm32, watchosarm64, watchosx86, linuxArm32Hfp, linuxMips32, linuxMipsel32, linuxX64, macosX64, mingwX64.  | 
In your build.gradle.kts file, add the Maven Central repository:
repositories {
    mavenCentral()
}
Then add the dependency:
kotlin {
    sourceSets {
        commonMain {
            dependencies {
                implementation("org.kodein.log:canard:0.15.0")
            }
        }
    }
}
| 
 If you are NOT using Gradle 6+, you should declare the use of the Gradle Metadata experimental feature settings.gradle.kts 
enableFeaturePreview("GRADLE_METADATA")
 |