ankitthakur / DbPreferences

An Android encrypted alternative to SharedPreferences. It's based on Room/SQlite and uses sqlcipher

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DB Preferences

GitHub license Build Status

An encrypted alternative to SharedPreferences. It's based on secure Room/SQlite and uses sqlcipher

Usage

Create an instance of DbPreferences and use get() or put() methodes on it

You need an enum which implements ConfigKey to access values, eg.

Kotlin
public enum MyConfigKeys implements ConfigKey {
    KEY_OBJECT_A, // your key A
    KEY_STRING_B; // your key B ... and so on
}

and init it with your secret

class MyApplication : Application() {

    override fun onCreate() {
        super.onCreate()

        DbPreferences.init(this, "your secret")
    }
    ...
 }
Java
// get it
TestClass testClass = new DbPreferences().get(MyConfigKeys.KEY_OBJECT_A, TestClass.class);

// or save
new DbPreferences().put(MyConfigKeys.KEY_OBJECT_A, testClassToStore);
Kotlin
// get
val testClass = DbPreferences().get<TestClass>(MyConfigKeys.KEY_OBJECT_A, TestClass::class.java)
//or save
DbPreferences().put(MyConfigKeys.KEY_OBJECT_A, testClassToStore)

Handle a list

Kotlin
//save
DbPreferences().put(MyConfigKeys.KEY_LIST, listSource)

// get
val listType = object : TypeToken<ArrayList<TestClass>>() {
}.type
var myList: ArrayList<TestClass>? = DbPreferences().get(MyConfigKeys.KEY_LIST, listType)

That's it !

Download

Repository available on https://jitpack.io

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}
dependencies {
    implementation 'com.github.hannesa2:DbPreferences:4.1' // AndroidX
    // or
    implementation 'com.github.hannesa2:DbPreferences:3.5' // Support Library
}

Performance

On a Samsung S4 mini

  • a read needs ~1 ms
  • a write needs ~ 3 ms

License

Copyright 2018 Hannes Achleitner

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.

About

An Android encrypted alternative to SharedPreferences. It's based on Room/SQlite and uses sqlcipher


Languages

Language:Kotlin 84.7%Language:Java 15.3%