Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

- We addressed a random scenario where gradle would resolve to using the Hermes v1 compiler instead of the old hermes override in gradle.properties. This would throw issues with "...bytecode mismatch...".
- We fixed an issue that could cause iOS apps to restart repeatedly after an OTA update.
- Replaced @notifee/react-native with react-native-notify-kit library.
- We addressed an issue on iOS, where a iOS-system dialogue would pop up during app startup, requesting a password. This was identified as part of Keychain read queries when a one-time keychain migration occurred.
Expand Down
3 changes: 3 additions & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ dependencies {

configurations.all {
resolutionStrategy {
// Force Hermes V0 version across all configurations to prevent random resolution due to gradle caching/timing issues.
force "com.facebook.hermes:hermes-android:0.15.1"

force "androidx.annotation:annotation:1.1.0"
force(
"com.google.android.gms:play-services-base:18.6.0",
Expand Down
Loading