diff --git a/README.md b/README.md index b062b53..fd290d8 100644 --- a/README.md +++ b/README.md @@ -12,15 +12,15 @@ #### Features -- Save and restore a variety of objects ‍`(serialization and decryption)‍` -- `Symmetric` encryption of objects ``(signed by target application at runtime + Hardware_ID)`` +- `Save and restore a variety of objects ‍(serialization and deserialization)‍` +- `Symmetric encryption of objects (signed by target application at runtime + Hardware_ID)` - `‍Very high performance‍` -- Very low library size `(No need for other libraries)` -- Supported and tested in API 15 and above -- Minimal and easy to use :‌) -- Save and restore all objects at ‍‍`runtime in` `RAM` (coming soon) -- Imports data from Shared Preferences to Reactor (coming soon) -- Multiprocess support (coming soon) +- `Very low library size (No need for other libraries)` +- `Supported and tested in API 15 and above` +- `Minimal and easy to use :‌)` +- `Save and restore all objects at ‍‍runtime in RAM (coming soon)` +- `Imports data from Shared Preferences to Reactor (coming soon)` +- `Multiprocess support (coming soon)` @@ -40,7 +40,7 @@ Add the dependency : ```Groovy dependencies { - implementation 'com.github.dfmabbas:reactor:v1.2.0' + implementation 'com.github.dfmabbas:reactor:v1.2.1' } ``` diff --git a/library/build.gradle b/library/build.gradle index f8f24b1..ea5ceae 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -4,8 +4,8 @@ apply plugin: 'kotlin-android' def mini_api = 15 def compile_api = 28 def target_api = 28 -def version_code = 120 -def version_name = '1.2.0' +def version_code = 121 +def version_name = '1.2.1' android { compileSdkVersion compile_api @@ -23,7 +23,6 @@ android { proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } - } dependencies { diff --git a/sample/build.gradle b/sample/build.gradle index de7737e..551f614 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -5,8 +5,8 @@ apply plugin: 'kotlin-android-extensions' def mini_api = 15 def compile_api = 28 def target_api = 28 -def version_code = 120 -def version_name = '1.2.0' +def version_code = 121 +def version_name = '1.2.1' def support_lib = '28.0.0' android {