Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- We fixed an issue that caused a FileNotFoundException during file deletion operations.

## [v0.1.3] - 2025-12-05

- We introduced AndroidNavigationBar module to get navigation bar height and active status.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Mendix native mobile package for React Native applications.

Before you begin, ensure you have the following installed:

- **Node.js**: Version 18 (specified in `.nvmrc`)
- **Node.js**: Version 24 (specified in `.nvmrc`)
- **Yarn**: Package manager (Yarn workspaces are required)
- **React Native development environment** (optional, only needed if running the example app): Follow the [React Native environment setup guide](https://reactnative.dev/docs/environment-setup)
- For iOS: Xcode and CocoaPods
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PODS:
- hermes-engine (0.77.3):
- hermes-engine/Pre-built (= 0.77.3)
- hermes-engine/Pre-built (0.77.3)
- MendixNative (0.1.2):
- MendixNative (0.1.3):
- DoubleConversion
- glog
- hermes-engine
Expand Down Expand Up @@ -1825,7 +1825,7 @@ SPEC CHECKSUMS:
fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
glog: eb93e2f488219332457c3c4eafd2738ddc7e80b8
hermes-engine: b2187dbe13edb0db8fcb2a93a69c1987a30d98a4
MendixNative: 0405210432ee514e2d7906fe5714f719eb6d7c75
MendixNative: 36190d86a65cb57b351c6396bc1349a7823206b0
op-sqlite: 12554de3e1a0cb86cbad3cf1f0c50450f57d3855
OpenSSL-Universal: 6082b0bf950e5636fe0d78def171184e2b3899c2
RCT-Folly: e78785aa9ba2ed998ea4151e314036f6c49e6d82
Expand Down
6 changes: 5 additions & 1 deletion ios/Modules/Helper/StorageHelper.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ public class StorageHelper {

public static func clearDataAt(url: URL, component: String) {
let path = url.appendingPathComponent(component).path
_ = NativeFsModule.remove(path, error: nil)
do {
try NativeFsModule.remove(path)
} catch {
NSLog("Failed to clear data at path: \(path), error: \(error.localizedDescription)")
}
}
}
Loading