Skip to content

Commit

Permalink
Update README and CHANGELOG for v1.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
pablobaxter committed Oct 10, 2021
1 parent 9b39b6f commit 2458e0e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Change Log

### Version 1.1.10 / 2021-10-10
- Fixes crashing issue caused by the `FileObserver.startWatch()` function on LGE devices [#38](https://github.com/pablobaxter/Harmony/pull/38)
- Update Kotlin version to 1.5.31 and Coroutines to 1.5.2

### Version 1.1.9 / 2021-08-22
- Fixes crashing issue caused by bad transaction file [#36](https://github.com/pablobaxter/Harmony/pull/36)
- Update libraries
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![CircleCI](https://circleci.com/gh/pablobaxter/Harmony/tree/main.svg?style=shield)](https://circleci.com/gh/pablobaxter/Harmony/tree/main)
[![GitHub](https://img.shields.io/github/license/pablobaxter/harmony)](https://github.com/pablobaxter/Harmony/blob/main/LICENSE)
[![Maven Central](https://img.shields.io/maven-central/v/com.frybits.harmony/harmony?label=Harmony)](https://search.maven.org/artifact/com.frybits.harmony/harmony/1.1.9/aar) [![Harmony API](https://img.shields.io/badge/API-17%2B-brightgreen.svg?style=flat&label=Harmony%20API)](https://android-arsenal.com/api?level=17) [![Maven Central](https://img.shields.io/maven-central/v/com.frybits.harmony/harmony-crypto?label=Harmony-Crypto)](https://search.maven.org/artifact/com.frybits.harmony/harmony-crypto/0.0.2/aar) [![Crypto API](https://img.shields.io/badge/API-23%2B-purple.svg?style=flat&label=Crypto%20API)](https://android-arsenal.com/api?level=23)
[![Maven Central](https://img.shields.io/maven-central/v/com.frybits.harmony/harmony?label=Harmony)](https://search.maven.org/artifact/com.frybits.harmony/harmony/1.1.10/aar) [![Harmony API](https://img.shields.io/badge/API-17%2B-brightgreen.svg?style=flat&label=Harmony%20API)](https://android-arsenal.com/api?level=17) [![Maven Central](https://img.shields.io/maven-central/v/com.frybits.harmony/harmony-crypto?label=Harmony-Crypto)](https://search.maven.org/artifact/com.frybits.harmony/harmony-crypto/0.0.2/aar) [![Crypto API](https://img.shields.io/badge/API-23%2B-purple.svg?style=flat&label=Crypto%20API)](https://android-arsenal.com/api?level=23)

Working on multiprocess Android apps is a complex undertaking. One of the biggest challenges is managing shared data between the multiple processes. Most solutions rely on one process to be available for another to read the data, which can be quite slow and could potentially lead to ANRs.

Expand All @@ -18,10 +18,10 @@ Harmony is a thread-safe, process-safe, full [`SharedPreferences`](https://devel
- Supports Android API 17+ (Crypto Android API 23+)

## Download
The latest release is available on [Maven Central](https://search.maven.org/artifact/com.frybits.harmony/harmony/1.1.9/aar).
The latest release is available on [Maven Central](https://search.maven.org/artifact/com.frybits.harmony/harmony/1.1.10/aar).
### Gradle
```
implementation 'com.frybits.harmony:harmony:1.1.9'
implementation 'com.frybits.harmony:harmony:1.1.10'
// implementation 'com.frybits.harmony:harmony-crypto:0.0.2' // For Encrypted SharedPreferences
```

Expand Down

0 comments on commit 2458e0e

Please sign in to comment.