kable icon indicating copy to clipboard operation
kable copied to clipboard

Add implicit bonding support

Open twyatt opened this issue 2 years ago • 2 comments

[!CAUTION] This is a work-in-progress and is not yet tested.

Closes #111

twyatt avatar Jun 04 '23 08:06 twyatt

@twyatt how can I test this in my project? I cannot get jitpack to work with this multiplatform branch.

Frank1234 avatar Jun 29 '23 14:06 Frank1234

how can I test this in my project? I cannot get jitpack to work with this multiplatform branch.

@Frank1234 You could use a local Maven install for testing:

Replace $version with an arbitrary version name, e.g.: 999.0.0.

$ ./gradlew -PRELEASE_SIGNING_ENABLED=false -PVERSION_NAME=$version publishToMavenLocal
repositories {
    mavenLocal()
    // ..
}

dependencies {
    implementation("com.juul.kable:core:$version")
}

twyatt avatar Jun 29 '23 19:06 twyatt