All Downloads are FREE. Search and download functionalities are using the official Maven repository.

androidMain.io.github.rotbolt.flakerdata.flakerprefs.DataStoreFactory.kt Maven / Gradle / Ivy

There is a newer version: 0.1.2
Show newest version
package io.github.rotbolt.flakerdata.flakerprefs

import android.content.Context
import androidx.datastore.core.DataStore
import androidx.datastore.preferences.core.Preferences

actual class DataStoreFactory(private val context: Context) {

    actual fun create(): DataStore {
        return createDataStore { context.filesDir.resolve(DATASTORE_FILE_NAME).absolutePath  }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy