Is there a multiplatform file API yet?
# multiplatform
s
Is there a multiplatform file API yet?
k
Okio has multiplatform artifacts, however as far as I know these are not yet documented. You can try it out by adding
Copy code
implementation("com.squareup.okio:okio-multiplatform:3.0.0-alpha.6")
to your
commonMain
You can also see this in action in this repo: https://github.com/jmfayard/kotlin-cli-starter
👍 1
s
oh wow. That’s awesome!
Thanks!