You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A lite weight SharedPreference library which uses annotation processing to generate codes that let.
5
+
A light weight library which uses annotation processing to generate codes that let you read and write to both `SharedPreferences` and `Preference` files.
6
6
7
-
* Eliminate the whole `SharedPreference`code
7
+
* Eliminate the whole `SharedPreference`boilerplace codes
8
8
* Write less code to configure JadeSharedPreference
9
-
* Save multiple values to JadeSharedPrefence at onces
10
-
* Read from JadeSharedPreference using just annotations `@Read...`)
9
+
* Save multiple values to both `Preference` and `SharedPreferences` at onces
10
+
* Read from `Preference` and `SharedPreferences` using just annotations `@Read...`)
11
11
* Listen to value changes in real-time
12
12
13
+
No one like writing lot of codes just to achieve a simple task. I mean, who does this:
14
+
15
+
```kotlin
16
+
val sp:SharedPreference= getSharedPreferences("coconut_head", Context.MODE_PRIVATE)
17
+
val value:String?=sp.getString("key", null)
18
+
```
19
+
When you can achieve same thing with less line of codes. Such as this:
0 commit comments