Skip to content
This repository was archived by the owner on Mar 1, 2022. It is now read-only.

Commit 02f3f0e

Browse files
committed
Added android arsenal badge and dependancy note now the library is on maven.
1 parent f4fc698 commit 02f3f0e

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Secure-preferences
22
==================
33

4+
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-secure--preferences-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/362)
5+
46
This is Android Shared preference wrapper that encrypts the keys and values of Shared Preferences using 256-bit AES. **The key is stored in the perferences and so can be read and extracted by root user.** Keys and values are encrypted and base64 encooded before storing into prefs.
57

68
The sample app is availbile on [playstore](https://play.google.com/store/apps/details?id=com.securepreferences.sample)
@@ -10,7 +12,17 @@ Much of the original code is from Daniel Abraham article on [codeproject](http:/
1012
![screenshot](https://raw.github.com/scottyab/secure-preferences/master/docs/images/ss_frame_secure_pref.png "Sample app Screenshot")
1113

1214

15+
##Dependency
16+
```java
17+
dependencies {
18+
compile 'com.scottyab:secure-preferences-lib:0.0.4'
19+
}
20+
```
21+
1322
##Release Notes:
23+
0.0.5 (coming soon)
24+
* default AES to CBC mode for increased security
25+
1426
0.0.4
1527
* Gralde support thanks @yelinaung
1628
* Fix for OnPreferenceChanged listener @richardleggett

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=0.0.4-SNAPSHOT
1+
VERSION_NAME=0.0.4
22
VERSION_CODE=4
33
GROUP=com.scottyab
44

0 commit comments

Comments
 (0)