All Projects → chibatching → Kotpref

chibatching / Kotpref

Licence: apache-2.0
Kotpref - Android SharedPreferences delegation library for Kotlin

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Kotpref

shade
Automatic code generation for the SharedPreferences operation.
Stars: ✭ 26 (-95.79%)
Mutual labels:  sharedpreferences
ToDoApp
📱My android playground app - Simple and Fastest todo app - developing to cover most android concepts, simple logic can make me focus more on framework
Stars: ✭ 28 (-95.47%)
Mutual labels:  sharedpreferences
Hawk
✔️ Secure, simple key-value storage for Android
Stars: ✭ 3,827 (+519.26%)
Mutual labels:  sharedpreferences
iMoney
iMoney 金融项目
Stars: ✭ 55 (-91.1%)
Mutual labels:  sharedpreferences
Quiz-App
A Quiz Android application 📱 built using Java ♨️ and showing best practices of 🛠️ Room
Stars: ✭ 33 (-94.66%)
Mutual labels:  sharedpreferences
pref dessert
Package that allows you persist objects as shared preferences easily.
Stars: ✭ 12 (-98.06%)
Mutual labels:  sharedpreferences
DailyBugle
📰Modern MVVM Android application following single activity architecture which fetches news from 🕷️ news API. this repository contains some best practices ⚡ of android development
Stars: ✭ 17 (-97.25%)
Mutual labels:  sharedpreferences
Materialpreferences
A highly flexible set of lovely looking views that provides functionality of preferences.
Stars: ✭ 495 (-19.9%)
Mutual labels:  sharedpreferences
memo
Android processing and secured library for managing SharedPreferences as key-value elements efficiently and structurally.
Stars: ✭ 18 (-97.09%)
Mutual labels:  sharedpreferences
Preferenceroom
🚚 Android processing library for managing SharedPreferences persistence efficiently and structurally.
Stars: ✭ 341 (-44.82%)
Mutual labels:  sharedpreferences
Preference-Rhythm
Android library makes using Shared Preference easier.
Stars: ✭ 16 (-97.41%)
Mutual labels:  sharedpreferences
RemotePreferences
A drop-in solution for inter-app access to SharedPreferences.
Stars: ✭ 121 (-80.42%)
Mutual labels:  sharedpreferences
Rxkprefs
🛠 A small Kotlin library to make shared preferences easy + RxJava and Coroutines support
Stars: ✭ 264 (-57.28%)
Mutual labels:  sharedpreferences
KVStorage
Android 结构化KV存储框架,基于 yaml 生成 java 结构化存储类
Stars: ✭ 228 (-63.11%)
Mutual labels:  sharedpreferences
Colorpickerpreference
🎨 A library that lets you implement ColorPicker, ColorPickerDialog, ColorPickerPreference.
Stars: ✭ 407 (-34.14%)
Mutual labels:  sharedpreferences
ElegantData
像操作Room一样操作 SharedPreferences 和 File 文件.
Stars: ✭ 18 (-97.09%)
Mutual labels:  sharedpreferences
Yasp
Yet Another Shared Preference
Stars: ✭ 16 (-97.41%)
Mutual labels:  sharedpreferences
Secured Preference Store
A cryptography library and a SharedPreferences wrapper for Android that encrypts the content with 256 bit AES encryption. The Encryption key is securely stored in device's KeyStore.
Stars: ✭ 562 (-9.06%)
Mutual labels:  sharedpreferences
Binaryprefs
Rapidly fast and lightweight re-implementation of SharedPreferences which stores each preference in files separately, performs disk operations via NIO with memory mapped byte buffers and works IPC (between processes). Written from scratch.
Stars: ✭ 484 (-21.68%)
Mutual labels:  sharedpreferences
Colorpreference
A custom preference item for easy implementation of a color picker in Android's preference screen.
Stars: ✭ 299 (-51.62%)
Mutual labels:  sharedpreferences

Kotpref

Android SharedPreference delegation for Kotlin.

kotlin codecov license

Install

repositories {
    mavenCentral()
}

dependencies {
    // core
    implementation 'com.chibatching.kotpref:kotpref:2.13.1'
  
    // optional, auto initialization module
    implementation 'com.chibatching.kotpref:initializer:2.13.1'
  
    // optional, support saving enum value and ordinal
    implementation 'com.chibatching.kotpref:enum-support:2.13.1'
  
    // optional, support saving json string through Gson
    implementation 'com.chibatching.kotpref:gson-support:2.13.1'
    implementation 'com.google.code.gson:gson:2.8.6'
  
    // optional, support LiveData observable preference
    implementation 'com.chibatching.kotpref:livedata-support:2.13.1'
    implementation 'androidx.lifecycle:lifecycle-livedata:2.2.0'

    // experimental, preference screen build dsl
    implementation 'com.chibatching.kotpref:preference-screen-dsl:2.13.1'
}

How to use

Declare preference model

object UserInfo : KotprefModel() {
    var name by stringPref()
    var code by nullableStringPref()
    var age by intPref(default = 14)
    var highScore by longPref()
    var rate by floatPref()
    val prizes by stringSetPref {
        val set = TreeSet<String>()
        set.add("Beginner")
        return@stringSetPref set
    }
}

enum class GameLevel {
    EASY,
    NORMAL,
    HARD
}

Set up

Pass the application context to Kotpref

Kotpref.init(context)

or use auto initializer module.

Injectable Context

If you don't want to use singleton context because of unit test or etc.., you can use secondary constructor of KotprefModel to inject context.

class InjectableContextSamplePref(context: Context) : KotprefModel(context) {
    var sampleData by stringPref()
}

If you set context to all your model, you don't need call Kotpref.init(context) and don't use auto initializer module.

Read and Write

UserInfo.gameLevel = GameLevel.HARD
UserInfo.name = "chibatching"
UserInfo.code = "DAEF2599-7FC9-49C5-9A11-3C12B14A6898"
UserInfo.age = 30
UserInfo.highScore = 49219902
UserInfo.rate = 49.21F
UserInfo.prizes.add("Bronze")
UserInfo.prizes.add("Silver")
UserInfo.prizes.add("Gold")

Log.d(TAG, "Game level: ${UserInfo.gameLevel}")
Log.d(TAG, "User name: ${UserInfo.name}")
Log.d(TAG, "User code: ${UserInfo.code}")
Log.d(TAG, "User age: ${UserInfo.age}")
Log.d(TAG, "User high score: ${UserInfo.highScore}")
Log.d(TAG, "User rate: ${UserInfo.rate}")
UserInfo.prizes.forEachIndexed { i, s -> Log.d(TAG, "prize[$i]: $s") }

Bulk edit

UserInfo.bulk {
    gameLevel = GameLevel.EASY
    name = "chibatching Jr"
    code = "451B65F6-EF95-4C2C-AE76-D34535F51B3B"
    age = 2
    highScore = 3901
    rate = 0.4F
    prizes.clear()
    prizes.add("New Born")
}

// Bulk edit uses Editor#apply() method internally.
// If you want to apply immediately, you can use blockingBulk instead.
UserInfo.blockingBulk {
    gameLevel = GameLevel.EASY
}

Result shared preference xml

XML file name equals model class name. If model class named UserInfo, XML file name is UserInfo.xml.

<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
    <long name="highScore" value="49219902" />
    <set name="prizes">
        <string>Beginner</string>
        <string>Bronze</string>
        <string>Gold</string>
        <string>Silver</string>
    </set>
    <string name="name">chibatching</string>
    <string name="code">DAEF2599-7FC9-49C5-9A11-3C12B14A6898</string>
    <int name="age" value="30" />
    <float name="rate" value="49.21" />
</map>

Options

Change default value

var age: Int by intPref(18)

or

var age: Int by intPref(default = 18)

Change preference key

You can custom preference key or use from string resources.

var useFunc1: Boolean by booleanPref(key = "use_func1")
var mode: Int by intPref(default = 1, key = R.string.pref_mode)

Change default save mode

Kotpref save all preference property by apply method. You can change method to commit for each property.

var age: Int by intPref(default = 18, commitByDefault = true)

Or change default for each KotprefModel.

object UserInfo : KotprefModel() {
    override val commitAllPropertiesByDefault: Boolean = true

Change XML file name

Override kotprefName property.

object UserInfo : KotprefModel() {
    override val kotprefName: String = "user_info"

Change SharedPreference mode

Override kotprefMode property. Default is Context.MODE_PRIVATE.

object UserInfo : KotprefModel() {
    override val kotprefMode: Int = Context.MODE_MULTI_PROCESS

API Docs

https://chibatching.github.io/Kotpref/docs/api/-modules.html

License

Copyright 2015-2021 Takao Chiba

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].