We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4e002f commit f4a79b5Copy full SHA for f4a79b5
README.md
@@ -148,6 +148,24 @@ concealPrefRepository.getPreferences();
148
```
149
150
151
+<b>Easier Save User Detail Preferences</b>
152
+```java
153
+new ConcealPrefRepository.UserPref()
154
+.setFirstName("Firstname")
155
+.setLastName("Lasname")
156
+.setEmail("[email protected]")
157
+.....
158
+.apply();
159
+
160
161
+//get user details
162
+Log.d("TAG",new ConcealPrefRepository.UserPref().getFirstName());
163
+Log.d("TAG",new ConcealPrefRepository.UserPref().getLastName());
164
+Log.d("TAG",new ConcealPrefRepository.UserPref().getEmail());
165
166
167
+```
168
169
<b>Extra Usage for Conceal Encryption and Decryption</b>
170
171
```java
0 commit comments