KMMFile

Utility library facilitates file system operations on Android and iOS, offering a straightforward setup process and integration through Maven Central.

Android JVMKotlin/Native
GitHub stars3
Authorspduy99
Dependents0
OSS Health
Creation dateover 3 years ago

Last activityover 3 years ago
Latest release1.0.0 (over 3 years ago)

KMMFile

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'
    }
}

Quick Guide

Android

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)
    }
}
Android JVMKotlin/Native
GitHub stars3
Authorspduy99
Dependents0
OSS Health
Creation dateover 3 years ago

Last activityover 3 years ago
Latest release1.0.0 (over 3 years ago)

KMMFile

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'
    }
}

Quick Guide

Android

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)
    }
}