diff --git a/README.md b/README.md index 5542143..b0def92 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Hawk provides: ###Add dependency ```groovy -compile 'com.orhanobut:hawk:1.8' +compile 'com.orhanobut:hawk:1.9' ``` #### Initialize the hawk @@ -44,6 +44,13 @@ Hawk.init(context, PASSWORD, new Hawk.Callback() { ); ``` +You can use no-crypto mode if you don't want encryption. This mode will be automatically used if the device does not +support AES, PBE algorithm. +```java +Hawk.init(context); +Hawk.noEncryption(); +``` + #### Save ```java Hawk.put(key, T); // Returns the result as boolean diff --git a/gradle.properties b/gradle.properties index ffbdf89..67a7980 100644 --- a/gradle.properties +++ b/gradle.properties @@ -19,8 +19,8 @@ # VERSION_NAME=1.9-SNAPSHOT # VERSION_CODE=10 -VERSION_NAME=1.8 -VERSION_CODE=9 +VERSION_NAME=1.9 +VERSION_CODE=10 GROUP=com.orhanobut POM_DESCRIPTION=Secure, Advanced Storage for android