logcat
logcat copied to clipboard
KMP support?
Wondering if this works / should work with Kotlin Multi Platform, and / or what need to change.
The main blocker is that the name logcat implies this is for Android ;)
If this library supports KMP, it will be great! ummm...I think logcat is not hindering
Currently it doesn't work in jvm-only KMP modules:
kotlin {
jvm()
sourceSets {
named("jvmMain") {
dependencies {
implementation("com.squareup.logcat:logcat:0.1")
}
}
}
}
The above configuration results in import logcat.LogcatLogger producing an error:
Unresolved reference: logcat
I suspect that's because this library is an aar.