KMMFile
1.0.0indexedUtility library facilitates file system operations on Android and iOS, offering a straightforward setup process and integration through Maven Central.
3
Stars
—
Used by
dependents
—
Health
/ 100
Utility library facilitates file system operations on Android and iOS, offering a straightforward setup process and integration through Maven Central.
KMMFile is an utility library helps applications working with File System (Android/iOS) in Kotlin Multiplatform.
I publish all of our libraries to mavenCentral(), you can add it to your project
repositories {
mavenCentral()
}
...
commonMain by getting {
dependencies {
implementation 'io.github.helios:kmm-filesystem:1.0.0'
}
}
Make sure you have provided the application context for FileSystem by calling method init(Context context), for example:
class MyApplication : Application() {
override fun onCreate() {
super.onCreate()
// provide FileSystem application context
FileSystem.init(this)
}
}
Surfaced from shared tags and platforms — no rankings paid for.