v1.0.0
The Kotlin Multiplatform Pref(erence)s system allows you to store, retrieve, and remove data locally on each platform. It leverages the native mechanisms provided by each platform.
[versions]
kmprefs = "1.0.0"
[libraries]
kmprefs = { module = "io.github.n7ghtm4r3:KMPrefs", version.ref = "kmprefs" }
Add the JitPack repository to your build file (just if you have Android target)
-
Add it in your root build.gradle at the end of repositories
repositories { ... maven { url 'https://jitpack.io' } maven { url 'https://repo.clojars.org' } }
repositories { ... maven("https://jitpack.io") maven("https://repo.clojars.org") }
-
Add the dependency
dependencies { implementation 'io.github.n7ghtm4r3:KMPrefs:1.0.0' }
dependencies { implementation("io.github.n7ghtm4r3:KMPrefs:1.0.0") }
dependencies { implementation(libs.kmprefs) }
Type | Description |
---|---|
Boolean |
Boolean type (true/false) |
BooleanArray |
Array of Boolean |
Byte |
8-bit signed integer |
ByteArray |
Array of Byte |
UByte |
8-bit unsigned integer |
UByteArray |
Array of UByte |
Short |
16-bit signed integer |
ShortArray |
Array of Short |
UShort |
16-bit unsigned integer |
UShortArray |
Array of UShort |
Int |
32-bit signed integer |
IntArray |
Array of Int |
UInt |
32-bit unsigned integer |
UIntArray |
Array of UInt |
Float |
32-bit floating-point number |
FloatArray |
Array of Float |
Double |
64-bit floating-point number |
DoubleArray |
Array of Double |
Long |
64-bit signed integer |
LongArray |
Array of Long |
ULong |
64-bit unsigned integer |
ULongArray |
Array of ULong |
String |
String of characters |
Same procedure for all the types
val kmPrefs = KMPrefs("your_storage_path") // create an instance
// for example store a Double value
kmPrefs.storeDouble(
key = "constant", // the key of the double value to store
value = 3.14159265359 // the double value to store
)
Same procedure for all the types
// for example retrive a Double value
val constant = kmPrefs.retrieveDouble(
key = "constant",
defValue = 1.6180339887 // a default value to use if the searched one is not stored yet
)
// same method for all the types
kmPrefs.removeValue(
key = "constant"
)
If you need help using the library or encounter any problems or bugs, please contact us via the following links:
Thank you for your help!
If you want support project and developer
Crypto | Address | Network |
---|---|---|
3H3jyCzcRmnxroHthuXh22GXXSmizin2yp | Bitcoin | |
0x1b45bc41efeb3ed655b078f95086f25fc83345c4 | Ethereum | |
AtPjUnxYFHw3a6Si9HinQtyPTqsdbfdKX3dJ1xiDjbrL | Solana |
If you want support project and developer with PayPal
Copyright © 2024 Tecknobit